27 lines
526 B
CSS
27 lines
526 B
CSS
|
|
div.header-message {
|
||
|
|
position: relative;
|
||
|
|
height: 32px;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.header-message div.wrapper {
|
||
|
|
position: fixed;
|
||
|
|
align-content: center;
|
||
|
|
z-index: 999;
|
||
|
|
box-sizing: border-box;
|
||
|
|
inset: 0;
|
||
|
|
background-color: var(--background-secondary);
|
||
|
|
padding: 0 8px;
|
||
|
|
width: 100%;
|
||
|
|
height: 32px;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.header-message div.wrapper span.title {
|
||
|
|
display: flex;
|
||
|
|
gap: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.header-message div.wrapper span.title,
|
||
|
|
div.header-message div.wrapper span.cursor {
|
||
|
|
color: var(--font-color-secondary);
|
||
|
|
}
|