mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
42 lines
537 B
SCSS
Executable File
42 lines
537 B
SCSS
Executable File
@charset "UTF-8";
|
|
|
|
|
|
// Default Theme
|
|
@import "themes/default";
|
|
|
|
|
|
// Core Components
|
|
@import "ionic.core";
|
|
|
|
|
|
// iOS Components
|
|
$ios-mode: true !default;
|
|
@if ($ios-mode) {
|
|
@import "ionic.ios";
|
|
}
|
|
|
|
|
|
// Material Design Components
|
|
$material-design-mode: true !default;
|
|
@if ($material-design-mode) {
|
|
@import "ionic.material";
|
|
}
|
|
|
|
|
|
// Ionicons
|
|
$ionicons: true !default;
|
|
@if ($ionicons) {
|
|
@import "fonts/ionicons";
|
|
}
|
|
|
|
|
|
// Roboto
|
|
$roboto: true !default;
|
|
@if ($roboto) {
|
|
@import "fonts/roboto";
|
|
}
|
|
|
|
|
|
// Platforms
|
|
@import "platform/cordova";
|