Skip to content
Snippets Groups Projects
Commit 11e95ea0 authored by syuilo's avatar syuilo
Browse files

wip

parent c5e9b69e
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,17 @@ export default Vue.extend({
type: String,
required: false
}
},
data() {
return {
styl: 'fill'
};
},
inject: ['isCardChild'],
created() {
if (this.isCardChild) {
this.styl = 'line';
}
}
});
</script>
......@@ -21,26 +32,49 @@ export default Vue.extend({
<style lang="stylus" scoped>
@import '~const.styl'
.ui-button
root(isDark, fill)
> button
display block
width 100%
margin 0
padding 0
color $theme-color-foreground
font-weight bold
font-size 16px
line-height 44px
background $theme-color
border none
border-radius 6px
outline none
box-shadow none
&:hover
background lighten($theme-color, 5%)
if fill
color $theme-color-foreground
background $theme-color
&:hover
background lighten($theme-color, 5%)
&:active
background darken($theme-color, 5%)
else
color $theme-color
background none
&:hover
color darken($theme-color, 5%)
&:active
background rgba($theme-color, 0.3)
.ui-button[data-darkmode]
&.fill
root(true, true)
&:not(.fill)
root(true, false)
&:active
background darken($theme-color, 5%)
.ui-button:not([data-darkmode])
&.fill
root(false, true)
&:not(.fill)
root(false, false)
</style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment