web: move border radius into a variable
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user