mirror of https://github.com/Lissy93/dashy.git
💄 Small style updates to themes and item
This commit is contained in:
parent
3fdf9d51c9
commit
96021f7641
|
@ -12,7 +12,7 @@
|
|||
:style="`--open-icon: ${getUnicodeOpeningIcon()}; ${customStyles}`"
|
||||
>
|
||||
<!-- Item Text -->
|
||||
<div :class="`tile-title ${!icon? 'bounce': ''}`" :id="`tile-${id}`" >
|
||||
<div :class="`tile-title ${!icon? 'bounce no-icon': ''}`" :id="`tile-${id}`" >
|
||||
<span class="text">{{ title }}</span>
|
||||
<p class="description">{{ description }}</p>
|
||||
</div>
|
||||
|
@ -319,6 +319,12 @@ export default {
|
|||
.tile-title {
|
||||
min-width: 100px;
|
||||
max-width: 160px;
|
||||
&.no-icon {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
max-width: inherit;
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
/* Large Tile Specific Themes */
|
||||
|
|
|
@ -926,6 +926,8 @@ html[data-theme="dashy-docs"] {
|
|||
border: none;
|
||||
color: var(--background);
|
||||
font-weight: bold;
|
||||
min-width: 5rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.minimal-section-heading {
|
||||
|
|
|
@ -38,29 +38,27 @@ module.exports = {
|
|||
builtInThemes: [
|
||||
'callisto',
|
||||
'thebe',
|
||||
'dracula',
|
||||
'oblivion',
|
||||
'material',
|
||||
'material-dark',
|
||||
'dracula',
|
||||
'colorful',
|
||||
'nord',
|
||||
'nord-frost',
|
||||
'dashy-docs',
|
||||
'minimal-dark',
|
||||
'minimal-light',
|
||||
'oblivion',
|
||||
'nord',
|
||||
'nord-frost',
|
||||
'cyberpunk',
|
||||
'matrix',
|
||||
'matrix-red',
|
||||
'hacker-girl',
|
||||
'raspberry-jam',
|
||||
'bee',
|
||||
'tiger',
|
||||
'blue-purple',
|
||||
'vaporware',
|
||||
'material-original',
|
||||
'material-dark-original',
|
||||
'cyberpunk',
|
||||
'vaporware',
|
||||
'high-contrast-dark',
|
||||
'high-contrast-light',
|
||||
'dashy-docs',
|
||||
],
|
||||
/* Which structural components should be visible by default */
|
||||
visibleComponents: {
|
||||
|
|
Loading…
Reference in New Issue