49 lines
1008 B
CSS
49 lines
1008 B
CSS
.status-bar {
|
|
width: 100%;
|
|
height: 62px;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: var(--primary-dark);
|
|
}
|
|
|
|
.status-bar__inner {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0px 20px 0px 20px;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.status-bar__time {
|
|
font-size: var(--font-size-md);
|
|
font-family: var(--font-family);
|
|
font-weight: 600;
|
|
color: var(--text-inverse);
|
|
width: auto;
|
|
height: auto;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
white-space: nowrap;
|
|
flex-grow: 0;
|
|
}
|
|
|
|
.status-bar__icons {
|
|
font-size: var(--font-size-sm);
|
|
font-family: var(--font-family);
|
|
font-weight: 400;
|
|
color: var(--text-inverse);
|
|
width: auto;
|
|
height: auto;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
white-space: nowrap;
|
|
flex-grow: 0;
|
|
}
|