Updated day tabs to shade based on weather
This commit is contained in:
fraxle
2026-05-27 18:21:37 +01:00
parent 05f0c2a19d
commit 6699d18ad0
3 changed files with 47 additions and 12 deletions
+6 -5
View File
@@ -73,7 +73,6 @@
.utci-day-tabs {
display: flex;
border-bottom: 2px solid #d4c0a0;
overflow-x: auto;
scroll-behavior: smooth;
scrollbar-width: none; /* Firefox */
@@ -84,7 +83,7 @@
}
.utci-day-tab {
flex-shrink: 0;
flex: 1 0 auto;
padding: 12px 24px;
cursor: pointer;
font-family: Manrope, sans-serif;
@@ -93,13 +92,15 @@
text-transform: uppercase;
letter-spacing: 0.08em;
background: transparent;
border: none;
border: 1px solid #c9b08a;
color: #b09870;
border-bottom: 2px solid transparent;
margin-bottom: -2px;
transition: color 0.2s, border-color 0.2s;
}
.utci-day-tab + .utci-day-tab {
border-left: none;
}
.utci-day-tab:hover {
color: #6b4f2a;
}