mirror of
https://github.com/bfloydd/streams.git
synced 2026-07-22 05:49:02 +00:00
common height
This commit is contained in:
parent
f2d0d17248
commit
1639c47070
1 changed files with 13 additions and 4 deletions
17
styles.css
17
styles.css
|
|
@ -1,3 +1,10 @@
|
|||
/*********************************************************
|
||||
* CSS VARIABLES - STREAMS BAR DIMENSIONS
|
||||
*********************************************************/
|
||||
:root {
|
||||
--streams-bar-widget-height: 28px;
|
||||
}
|
||||
|
||||
/*********************************************************
|
||||
* ANIMATIONS
|
||||
*********************************************************/
|
||||
|
|
@ -389,7 +396,7 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
height: var(--streams-bar-widget-height);
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
color: var(--text-muted);
|
||||
|
|
@ -420,6 +427,7 @@
|
|||
/* margin: 0 8px; */
|
||||
font-size: 15px;
|
||||
min-width: 60px;
|
||||
height: var(--streams-bar-widget-height);
|
||||
padding: 2px 2px;
|
||||
border-radius: 4px;
|
||||
background-color: var(--interactive-normal);
|
||||
|
|
@ -441,7 +449,7 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
height: 28px;
|
||||
height: var(--streams-bar-widget-height);
|
||||
box-sizing: border-box;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
|
@ -452,6 +460,7 @@
|
|||
justify-content: center;
|
||||
gap: 6px;
|
||||
padding: 5px 12px;
|
||||
height: var(--streams-bar-widget-height);
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
|
|
@ -482,7 +491,7 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
height: var(--streams-bar-widget-height);
|
||||
border-radius: 4px;
|
||||
background-color: var(--interactive-normal);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
|
|
@ -502,7 +511,7 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
height: var(--streams-bar-widget-height);
|
||||
border-radius: 4px;
|
||||
background-color: var(--interactive-normal);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
|
|
|
|||
Loading…
Reference in a new issue