web: move border radius into a variable

This commit is contained in:
wukko
2024-06-16 19:51:02 +06:00
parent 3a57c7165f
commit 1325c3516c
4 changed files with 6 additions and 4 deletions

View File

@@ -14,6 +14,7 @@
flex-wrap: nowrap;
scrollbar-width: none;
overflow-x: scroll;
border-radius: var(--border-radius);
}
.switcher :global(.button:first-child) {

View File

@@ -94,7 +94,7 @@
#input-container {
display: flex;
box-shadow: 0 0 0 1.5px var(--gray) inset;
border-radius: 11px;
border-radius: var(--border-radius);
padding: 0 12px;
align-items: center;
gap: 10px;

View File

@@ -101,8 +101,8 @@
transform: none;
border-left: 1px var(--gray) solid;
border-top-right-radius: 11px;
border-bottom-right-radius: 11px;
border-top-right-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
}
#download-state {