mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
13 lines
336 B
SCSS
13 lines
336 B
SCSS
// Styles used before the user is logged into discourse. For example, activating their
|
|
// account or changing their email.
|
|
|
|
@import "common/foundation/variables";
|
|
@import "common/foundation/mixins";
|
|
|
|
#simple-container {
|
|
@include border-radius-all(10px);
|
|
background-color: white;
|
|
padding: 20px;
|
|
width: 550px;
|
|
margin: 0 auto;
|
|
}
|