diff options
author | 2020-12-09 23:26:30 +0100 | |
---|---|---|
committer | 2020-12-09 23:26:30 +0100 | |
commit | 4a9cf28660ed3b7e02952d02035978d1d4ad3e7e (patch) | |
tree | a707bcf5a44095fab89242ab8f0ae1cdc0c331cf /client/src/admin/scss/_creator.scss | |
parent | 4d642e312ed728ad51c454d1e2a0b7bb350fc174 (diff) | |
download | website_creator-main.tar.gz website_creator-main.tar.bz2 website_creator-main.zip |
add creator 2nd step & onKeyPress helpermain
Diffstat (limited to 'client/src/admin/scss/_creator.scss')
-rw-r--r-- | client/src/admin/scss/_creator.scss | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/client/src/admin/scss/_creator.scss b/client/src/admin/scss/_creator.scss index 0bf267e..696208c 100644 --- a/client/src/admin/scss/_creator.scss +++ b/client/src/admin/scss/_creator.scss @@ -32,6 +32,10 @@ &:hover { background: $text-selected; } + + &:focus { + outline: 2px solid $text-selected; + } } &-text { @@ -53,7 +57,9 @@ &-next { color: $text-inactive; display: inline-block; - padding: 1em; + padding: .5em; + margin: 0 1em; + outline: none; &.active { color: $text; @@ -63,6 +69,10 @@ &:hover { color: $text-selected; } + + &:focus { + border-bottom: 2px solid $text-selected; + } } } @@ -71,11 +81,17 @@ color: $text; transition: .3s color; cursor: pointer; - padding: 1em; + padding: .5em; + margin: 0 1em; + outline-width: 0; &:hover { color: $text-selected; } + + &:focus { + border-bottom: 2px solid $text-selected; + } } } } |