mirror of
https://github.com/penpot/penpot.git
synced 2025-02-04 21:38:53 -05:00
56 lines
808 B
SCSS
56 lines
808 B
SCSS
|
.generic-modal {
|
||
|
background-color: $color-white;
|
||
|
width: 565px;
|
||
|
display: flex;
|
||
|
position: relative;
|
||
|
|
||
|
.close {
|
||
|
cursor: pointer;
|
||
|
position: absolute;
|
||
|
right: 16px;
|
||
|
top: 16px;
|
||
|
svg {
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
transform: rotate(45deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.modal-content {
|
||
|
display: flex;
|
||
|
flex-grow: 1;
|
||
|
flex-direction: column;
|
||
|
padding: 100px;
|
||
|
}
|
||
|
|
||
|
.button-row {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
> button {
|
||
|
font-size: $fs13;
|
||
|
}
|
||
|
> button:not(:first-child) {
|
||
|
margin-left: 25px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.change-email-modal {
|
||
|
h2 {
|
||
|
font-size: $fs14;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.confirmation {
|
||
|
.btn-primary {
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
.featured-note .icon svg {
|
||
|
fill: $color-success;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|