From 329fc73b94852697f7a057957a714d961a2e9e3b Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Fri, 19 Aug 2022 19:57:57 +0200 Subject: create global scss styles --- web/pw-server/src/styles/buttons.scss | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 web/pw-server/src/styles/buttons.scss (limited to 'web/pw-server/src/styles/buttons.scss') diff --git a/web/pw-server/src/styles/buttons.scss b/web/pw-server/src/styles/buttons.scss new file mode 100644 index 0000000..2aa7535 --- /dev/null +++ b/web/pw-server/src/styles/buttons.scss @@ -0,0 +1,27 @@ +$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-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; +} -- cgit v1.2.3