このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/resources/sass/app.scss

60 行
1.2 KiB
SCSS
Raw 通常表示 履歴

2021-09-30 16:50:44 +09:00
// Fonts
2021-09-29 22:23:02 +09:00
@charset "UTF-8";
2021-09-29 23:52:07 +09:00
2021-09-30 16:50:44 +09:00
@import url('https://fonts.googleapis.com/css?family=Nunito');
2021-09-29 22:23:02 +09:00
2021-09-30 16:50:44 +09:00
// Variables
@import 'variables';
2021-09-29 22:23:02 +09:00
2021-09-30 16:50:44 +09:00
$breakpoint-up: (
'pc': 'screen and (min-width: 1068px)',
'sp': 'screen and (min-width: 431px)',
'sp02': 'screen and (min-width: 375px)',
) !default;
2021-09-29 22:23:02 +09:00
2021-09-30 16:50:44 +09:00
$breakpoint-down: (
'sp': 'screen and (max-width: 1067px)',
'sp02': 'screen and (max-width: 430px)',
'min': 'screen and (max-width: 374px)',
) !default;
2021-09-29 22:23:02 +09:00
2021-09-30 16:50:44 +09:00
@mixin mq_up($breakpoint: md) {
@media #{map-get($breakpoint-up, $breakpoint)} {
@content;
}
}
2021-09-29 22:23:02 +09:00
2021-09-30 16:50:44 +09:00
@mixin mq_down($breakpoint: md) {
@media #{map-get($breakpoint-down, $breakpoint)} {
@content;
}
}
2021-09-29 22:23:02 +09:00
2021-09-30 16:50:44 +09:00
// Bootstrap
@import '~bootstrap/scss/bootstrap';
2021-09-29 22:23:02 +09:00
2021-10-02 16:15:31 +09:00
@import './custom_c/base/layout';
@import './custom_c/base/loader';
@import './custom_c/base/color';
@import './custom_c/base/font';
@import './custom_c/base/typography';
@import './custom_c/base/cursor';
@import './custom_c/base/transform';
@import './custom_c/layouts/main';
@import './custom_c/component/alert';
@import './custom_c/component/button';
@import './custom_c/component/flex';
@import './custom_c/component/img';
@import './custom_c/component/input';
@import './custom_c/component/list';
2021-09-30 20:54:09 +09:00