diff options
Diffstat (limited to 'web/pw-server/src/styles')
-rw-r--r-- | web/pw-server/src/styles/buttons.scss | 31 | ||||
-rw-r--r-- | web/pw-server/src/styles/global.scss | 2 |
2 files changed, 33 insertions, 0 deletions
diff --git a/web/pw-server/src/styles/buttons.scss b/web/pw-server/src/styles/buttons.scss new file mode 100644 index 0000000..b485014 --- /dev/null +++ b/web/pw-server/src/styles/buttons.scss @@ -0,0 +1,31 @@ +$btn-text-color: rgb(9, 105, 218); +$btn-border-color: rgba(27, 31, 36, 0.25); + +.btn { + color: $btn-text-color; + font-size: 14px; + text-decoration: none; + padding: 6px 16px; + border: 1px solid $btn-border-color; + border-radius: 5px; +} + +.btn.btn-disabled { + color: $btn-border-color; +} + +.btn-group { + display: flex; +} + +.btn-group .btn:not(:last-child) { + border-right: none; +} + +.btn-group .btn:first-child { + border-radius: 5px 0 0 5px; +} + +.btn-group .btn:last-child { + border-radius: 0 5px 5px 0; +} diff --git a/web/pw-server/src/styles/global.scss b/web/pw-server/src/styles/global.scss new file mode 100644 index 0000000..9ead606 --- /dev/null +++ b/web/pw-server/src/styles/global.scss @@ -0,0 +1,2 @@ +@forward "./variables.scss"; +@forward "./buttons.scss"; |