Base screen styles

This commit is contained in:
Adina Țeudan 2021-10-02 16:09:05 +03:00
parent bafe744fbf
commit e09d56e9bf
2 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,71 @@
.top-bar {
height: 61px;
width: 100vw;
display: flex;
justify-content: space-between;
padding: 0 24px;
border-bottom: 1px solid var(--iqser-separator);
box-sizing: border-box;
.center {
display: flex;
align-items: center;
justify-content: center;
margin: 0 50px;
}
.app-name {
font-family: 'OpenSans Extrabold', sans-serif;
margin-left: 10px;
height: 20px;
font-size: 13px;
font-weight: 800;
letter-spacing: 0;
line-height: 20px;
white-space: nowrap;
}
.menu {
display: flex;
align-items: center;
overflow: hidden;
&.right {
justify-content: flex-end;
}
}
.menu-placeholder {
display: flex;
flex: 2;
}
.buttons {
display: flex;
margin-right: 8px;
> *:not(:last-child) {
margin-right: 2px;
}
}
}
.dev-mode {
background-color: var(--iqser-primary);
color: var(--iqser-white);
font-size: 22px;
line-height: 16px;
text-align: center;
position: fixed;
top: 0;
z-index: 100;
right: 0;
height: 61px;
word-break: break-all;
display: flex;
justify-content: center;
align-items: center;
font-family: monospace;
width: 24px;
font-weight: bold;
}

View File

@ -7,3 +7,4 @@
@use 'common-dialogs';
@use 'common-components';
@use 'common-menu';
@use 'common-base-screen';