mirror of https://github.com/Kylart/KawAnime.git
Added some missing components
This commit is contained in:
parent
9d729f33ad
commit
64db07c4e1
|
@ -70,7 +70,7 @@ $theme := {
|
|||
Custom rules which will be applied globally, allows overriding
|
||||
*/
|
||||
.application--toolbar.application--footer > main > .container
|
||||
min-height calc(100vh - (48px + 24px))
|
||||
min-height calc(100vh - (48px + 24px)) !important
|
||||
|
||||
.navigation-drawer .list__tile
|
||||
font-size 14px
|
||||
|
@ -81,9 +81,6 @@ $theme := {
|
|||
div.dialog--fullscreen
|
||||
margin 24px 0 0
|
||||
|
||||
.expansion-panel__bodylast-child
|
||||
border-bottom 0 !important
|
||||
|
||||
#title a.list__tile
|
||||
height 60px
|
||||
|
||||
|
|
|
@ -20,7 +20,9 @@ import {
|
|||
VProgressCircular,
|
||||
VRadioGroup,
|
||||
VTabs,
|
||||
VSwitch
|
||||
VSwitch,
|
||||
VExpansionPanel,
|
||||
VDivider
|
||||
} from 'vuetify'
|
||||
|
||||
import { Tooltip, Ripple } from 'vuetify/src/directives'
|
||||
|
@ -48,7 +50,9 @@ export default (Vue) => {
|
|||
VProgressCircular,
|
||||
VRadioGroup,
|
||||
VTabs,
|
||||
VSwitch
|
||||
VSwitch,
|
||||
VExpansionPanel,
|
||||
VDivider
|
||||
},
|
||||
directives: {
|
||||
Tooltip,
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
v-dialog(lazy, absolute, width='75%', v-model='$store.state.historyModal')
|
||||
v-btn(secondary, dark, @click.mative='refresh()', slot='activator')
|
||||
| History
|
||||
v-card.secondary
|
||||
v-card
|
||||
v-card-title.headline History
|
||||
v-divider
|
||||
v-card-text
|
||||
v-layout(row, wrap)
|
||||
v-expansion-panel.secondary(expand)
|
||||
v-expansion-panel(expand, popout)
|
||||
v-expansion-panel-content.item-container(
|
||||
ripple,
|
||||
v-for='item in Object.keys(history).reverse()',
|
||||
:key='item'
|
||||
)
|
||||
.day(slot='header', v-ripple='true')
|
||||
.day(slot='header')
|
||||
| {{ item }}
|
||||
v-card
|
||||
v-card-text.lighten-3.info-container
|
||||
|
@ -79,11 +79,6 @@
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
.expansion-panel > li
|
||||
{
|
||||
border: 1px solid #444 !important;
|
||||
}
|
||||
|
||||
.ellipsis
|
||||
{
|
||||
overflow: hidden;
|
||||
|
@ -108,6 +103,7 @@
|
|||
font-size: 17px;
|
||||
font-weight: 700;
|
||||
padding-left: 15px;
|
||||
background-color: #424242 !important;
|
||||
}
|
||||
|
||||
.entry
|
||||
|
|
Loading…
Reference in New Issue