Several updates have been done in different pages of the app for improved performance and user experience. This includes content changes in the `Identitas` page, updates in the layout and reduction of complex code in the `Tabel` page. There's also a modification in app navigation options and application of gradient color themes in graphs displayed on the `grafik` page.
47 lines
1.5 KiB
SCSS
47 lines
1.5 KiB
SCSS
/*
|
|
* App Global CSS
|
|
* ----------------------------------------------------------------------------
|
|
* Put style rules here that you want to apply globally. These styles are for
|
|
* the entire app and not just one component. Additionally, this file can be
|
|
* used as an entry point to import other CSS/Sass files to be included in the
|
|
* output CSS.
|
|
* For more information on global stylesheets, visit the documentation:
|
|
* https://ionicframework.com/docs/layout/global-stylesheets
|
|
*/
|
|
|
|
/* Core CSS required for Ionic components to work properly */
|
|
@import "@ionic/angular/css/core.css";
|
|
|
|
/* Basic CSS for apps built with Ionic */
|
|
@import "@ionic/angular/css/normalize.css";
|
|
@import "@ionic/angular/css/structure.css";
|
|
@import "@ionic/angular/css/typography.css";
|
|
@import "@ionic/angular/css/display.css";
|
|
|
|
/* Optional CSS utils that can be commented out */
|
|
@import "@ionic/angular/css/padding.css";
|
|
@import "@ionic/angular/css/float-elements.css";
|
|
@import "@ionic/angular/css/text-alignment.css";
|
|
@import "@ionic/angular/css/text-transformation.css";
|
|
@import "@ionic/angular/css/flex-utils.css";
|
|
|
|
/**
|
|
* Ionic Dark Mode
|
|
* -----------------------------------------------------
|
|
* For more info, please see:
|
|
* https://ionicframework.com/docs/theming/dark-mode
|
|
*/
|
|
|
|
/* @import "@ionic/angular/css/palettes/dark.always.css"; */
|
|
/* @import "@ionic/angular/css/palettes/dark.class.css"; */
|
|
@import "@ionic/angular/css/palettes/dark.system.css";
|
|
|
|
|
|
.datatable-row-even {
|
|
background-color: #f9f9f9 !important;
|
|
}
|
|
|
|
.datatable-row-odd {
|
|
background-color: #ffffff !important;
|
|
}
|