This commit is contained in:
Adina Țeudan 2022-04-19 23:43:15 +03:00
parent fd9d622413
commit 2968539744

View File

@ -9,6 +9,22 @@ body {
color: var(--iqser-accent);
font-size: 13px;
line-height: 16px;
display: flex;
overflow: hidden;
}
redaction-root {
display: flex;
overflow: hidden;
router-outlet + * {
display: flex;
flex: 1;
flex-direction: column;
overflow: auto;
@include common-mixins.scroll-bar;
}
}
section.settings {
@ -98,33 +114,33 @@ section.settings {
.content-container {
overflow: hidden;
position: relative;
width: 100%;
flex: 1;
}
.dialog {
border-radius: 8px;
margin-top: 40px;
margin-bottom: 70px;
background-color: var(--iqser-white);
max-width: 650px;
height: fit-content;
box-shadow: 0 1px 5px 0 rgba(40, 50, 65, 0.19);
position: unset;
.dialog:not(section) {
border-radius: 8px;
margin-top: 40px;
margin-bottom: 70px;
background-color: var(--iqser-white);
max-width: 650px;
height: fit-content;
box-shadow: 0 1px 5px 0 rgba(40, 50, 65, 0.19);
position: unset;
.heading-l {
margin-bottom: 16px;
.heading-l {
margin-bottom: 16px;
}
.dialog-content {
display: flex;
.dialog-content-left {
min-width: 300px;
margin-right: 64px;
}
.dialog-content {
display: flex;
.dialog-content-left {
min-width: 300px;
margin-right: 64px;
}
.link-action {
margin-top: 8px;
}
.link-action {
margin-top: 8px;
}
}
}