mirror of
https://github.com/penpot/penpot.git
synced 2025-08-04 09:48:22 +02:00
♻️ Initial profile and auth refactor.
This commit is contained in:
parent
d0defe5d93
commit
7d5f9c1078
59 changed files with 2712 additions and 1407 deletions
55
frontend/resources/styles/main/partials/modal.scss
Normal file
55
frontend/resources/styles/main/partials/modal.scss
Normal file
|
@ -0,0 +1,55 @@
|
|||
.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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue