10 lines
152 B
SCSS
10 lines
152 B
SCSS
@use "sass:map";
|
|
@import 'reset';
|
|
|
|
@media screen and (max-width: 800px) {
|
|
@import 'phone';
|
|
}
|
|
@media screen and (min-width: 800px) {
|
|
@import 'pc';
|
|
}
|