discourse/app/assets/stylesheets/common/base/activation.scss
Meghna 72889573e6
UX: better account-created page (#17452)
UX: minor styling updates to accept invite pages
2022-07-14 20:43:00 +05:30

29 lines
628 B
SCSS

// Styles used before the user is logged into discourse. For example, activating their
// account or changing their email.
#simple-container {
border-radius: 10px;
background-color: var(--secondary);
padding: 20px;
width: 550px;
margin: 0 auto;
.account-created {
.ac-message {
font-size: $font-up-1;
line-height: $line-height-large;
}
.activation-controls {
button {
margin-right: 0.5em;
}
}
.ac-page {
border-radius: 10px;
margin-top: 25px;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
border-top: 6px solid var(--tertiary);
}
}
}