bugfixes
This commit is contained in:
parent
653f3fed49
commit
844305b383
3 changed files with 36 additions and 4 deletions
|
|
@ -33,6 +33,7 @@ app-sidebar-mobile {
|
||||||
padding: 64px;
|
padding: 64px;
|
||||||
background-color: var(--bgContent);
|
background-color: var(--bgContent);
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blur-background {
|
.blur-background {
|
||||||
|
|
|
||||||
|
|
@ -18,13 +18,16 @@ section {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: var(--white);
|
background-color: var(--white);
|
||||||
width: 600px;
|
width: 600px;
|
||||||
height: 170px;
|
height: 200px;
|
||||||
border-radius: 26px;
|
border-radius: 26px;
|
||||||
|
margin: 24px;
|
||||||
border: 2px solid rgba($color: #000000, $alpha: 0.1);
|
border: 2px solid rgba($color: #000000, $alpha: 0.1);
|
||||||
p {
|
p {
|
||||||
|
text-align: center;
|
||||||
font-size: 27px;
|
font-size: 27px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
|
padding: 0 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -41,8 +44,6 @@ section {
|
||||||
width: 111px;
|
width: 111px;
|
||||||
height: 57px;
|
height: 57px;
|
||||||
margin: 0 24px;
|
margin: 0 24px;
|
||||||
font-size: 21px;
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-cancle {
|
.btn-cancle {
|
||||||
|
|
@ -80,3 +81,29 @@ section {
|
||||||
box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
|
box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 450px) {
|
||||||
|
.dialog {
|
||||||
|
p {
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 350px) {
|
||||||
|
.dialog {
|
||||||
|
width: 280px;
|
||||||
|
p {
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-delete-contact,
|
||||||
|
.btn-cancle {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -127,7 +127,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-mobile {
|
.btn-mobile {
|
||||||
display: flex;
|
display: none;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
|
@ -210,6 +210,10 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-mobile {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
.name {
|
.name {
|
||||||
font-size: 36px;
|
font-size: 36px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue