forked from FoundKeyGang/FoundKey
🎨
This commit is contained in:
parent
fa1a85f682
commit
46ef86e478
1 changed files with 9 additions and 2 deletions
|
@ -488,7 +488,10 @@ root(isDark)
|
||||||
&:focus
|
&:focus
|
||||||
&:not([data-is-modal])
|
&:not([data-is-modal])
|
||||||
> .body
|
> .body
|
||||||
box-shadow 0 0 0px 1px rgba($theme-color, 0.5), 0 2px 6px 0 rgba(#000, 0.2)
|
if isDark
|
||||||
|
box-shadow 0 0 0px 1px rgba($theme-color, 0.5), 0 2px 12px 0 rgba(#000, 0.5)
|
||||||
|
else
|
||||||
|
box-shadow 0 0 0px 1px rgba($theme-color, 0.5), 0 2px 6px 0 rgba(#000, 0.2)
|
||||||
|
|
||||||
> .handle
|
> .handle
|
||||||
$size = 8px
|
$size = 8px
|
||||||
|
@ -556,7 +559,11 @@ root(isDark)
|
||||||
overflow hidden
|
overflow hidden
|
||||||
background isDark ? #282C37 : #fff
|
background isDark ? #282C37 : #fff
|
||||||
border-radius 6px
|
border-radius 6px
|
||||||
box-shadow 0 2px 6px 0 rgba(#000, 0.2)
|
|
||||||
|
if isDark
|
||||||
|
box-shadow 0 2px 12px 0 rgba(#000, 0.5)
|
||||||
|
else
|
||||||
|
box-shadow 0 2px 6px 0 rgba(#000, 0.2)
|
||||||
|
|
||||||
> header
|
> header
|
||||||
$header-height = 40px
|
$header-height = 40px
|
||||||
|
|
Loading…
Reference in a new issue