mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
style(console): sie guide max width (#1291)
* style(console): sie guide max width * refactor: use mixin
This commit is contained in:
parent
9b19b0e970
commit
f5cc72fcbe
3 changed files with 8 additions and 3 deletions
|
@ -21,8 +21,6 @@
|
|||
overflow-y: auto;
|
||||
|
||||
> * {
|
||||
max-width: 1168px;
|
||||
min-width: 604px;
|
||||
margin: 0 auto;
|
||||
@include _.main-content-width;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
.main {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
@include _.main-content-width;
|
||||
|
||||
.form {
|
||||
flex: 1;
|
||||
|
|
|
@ -4,6 +4,12 @@
|
|||
@return #{$factor * 4}px;
|
||||
}
|
||||
|
||||
@mixin main-content-width {
|
||||
max-width: 1168px;
|
||||
min-width: 604px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@mixin flex-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
Loading…
Add table
Reference in a new issue