feat: change to other sitepakage
This commit is contained in:
20
packages/base/Resources/Public/Scss/base/_container.scss
Normal file
20
packages/base/Resources/Public/Scss/base/_container.scss
Normal file
@@ -0,0 +1,20 @@
|
||||
.container {
|
||||
margin: auto;
|
||||
padding: 3rem 1rem;
|
||||
|
||||
@include respond($breakpoint-sm) {
|
||||
max-width: 540px;
|
||||
}
|
||||
|
||||
@include respond($breakpoint-md) {
|
||||
max-width: 720px;
|
||||
}
|
||||
|
||||
@include respond($breakpoint-lg) {
|
||||
max-width: 960px;
|
||||
}
|
||||
|
||||
@include respond($breakpoint-xl) {
|
||||
max-width: 1140px;
|
||||
}
|
||||
}
|
||||
5
packages/base/Resources/Public/Scss/base/_global.scss
Normal file
5
packages/base/Resources/Public/Scss/base/_global.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
body {
|
||||
font-family: $font-stack;
|
||||
color: $primary-color;
|
||||
line-height: 1.5;
|
||||
}
|
||||
6
packages/base/Resources/Public/Scss/base/_reset.scss
Normal file
6
packages/base/Resources/Public/Scss/base/_reset.scss
Normal file
@@ -0,0 +1,6 @@
|
||||
// A simple CSS reset, adapt as needed
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
3
packages/base/Resources/Public/Scss/base/base.scss
Normal file
3
packages/base/Resources/Public/Scss/base/base.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
@import 'reset';
|
||||
@import 'global';
|
||||
@import 'container';
|
||||
Reference in New Issue
Block a user