[#181] restore overall desktop UI

This commit is contained in:
Robin Scholtes 2023-04-19 21:21:04 +12:00
parent c56ffef988
commit 58d4eb855c
8 changed files with 85 additions and 52 deletions

View file

@ -7,13 +7,14 @@
*/
#banner {
display: flex;
justify-content: space-between;
padding-left: 12px;
padding-right: 4px;
line-height: var(--banner-height);
color: var(--banner-font-colour);
background-color: var(--banner-bg-colour);
border-bottom: 1px solid var(--primary-border-colour);
justify-content: space-between; /* flex is applied through .row on the banner element */
}
#banner i {
@ -21,6 +22,17 @@
padding-right: 10px;
}
/* Notice wrapper */
#notice-wrapper {
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* Banner links ( options, about / support ) */
.banner-link {
color: var(--banner-url-colour);
}
@ -35,9 +47,5 @@
}
}
#notice-wrapper {
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}