aboutsummaryrefslogtreecommitdiff
path: root/src/client/style/_component-week-selector.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/style/_component-week-selector.scss')
-rw-r--r--src/client/style/_component-week-selector.scss38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/client/style/_component-week-selector.scss b/src/client/style/_component-week-selector.scss
new file mode 100644
index 0000000..0d7696b
--- /dev/null
+++ b/src/client/style/_component-week-selector.scss
@@ -0,0 +1,38 @@
+.week-selector {
+ display: flex;
+ padding: 8px;
+ padding-bottom: 0;
+ color: white;
+ align-items: center;
+
+ .text {
+ flex-grow: 1;
+ text-align: center;
+ }
+
+ button {
+ background-color: initial;
+ border: initial;
+ color: inherit;
+ padding: 8px;
+ border-radius: 4px;
+
+ svg {
+ font-size: 2em;
+ }
+
+ &:focus {
+ background-color: #D32F2F;
+ outline: none;
+ }
+
+ &:active {
+ background-color: #B81111;
+ outline: none;
+ }
+
+ &::-moz-focus-inner {
+ border: 0; // Remove the dotted line outline from Firefox
+ }
+ }
+}