63 lines
1.2 KiB
SCSS
63 lines
1.2 KiB
SCSS
:host {
|
|
display: grid;
|
|
grid-template-rows: max-content auto;
|
|
flex-direction: column;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
.navbar-container {
|
|
z-index: 100;
|
|
background-color: #fff;
|
|
box-shadow: #666 0px -10px 10px 10px;
|
|
|
|
.navbar {
|
|
width: 100%;
|
|
// width: 1000px;
|
|
justify-content: space-around;
|
|
display: flex;
|
|
|
|
box-sizing: border-box;
|
|
|
|
div {
|
|
a {
|
|
user-select: none;
|
|
font-size: 1.2rem;
|
|
color: black;
|
|
text-decoration: none;
|
|
padding: .75rem 1.5rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
.content {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
overflow: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.overlay {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 10000000;
|
|
width: 100vw;
|
|
|
|
.messages-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
align-items: flex-end;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
max-height: 100vh;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
}
|