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