mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
63 lines
1.7 KiB
SCSS
63 lines
1.7 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";
|
|
|
|
ion-avatar {
|
|
width: 27px;
|
|
height: 27px;
|
|
}
|
|
|
|
ion-item {
|
|
--highlight-color-valid: transparent;
|
|
--highlight-color-invalid: transparent;
|
|
--highlight-color-focused: var(--ion-color-light);
|
|
}
|
|
|
|
.claim-button {
|
|
margin-inline-start: 0;
|
|
margin-inline-end: 0;
|
|
margin-top: 24px;
|
|
min-width: 140px;
|
|
}
|
|
|
|
.alertlike-modal {
|
|
.modal-wrapper {
|
|
max-height: 380px !important;
|
|
top: 25% !important;
|
|
width: 90% !important;
|
|
left: 5% !important;
|
|
--box-shadow: none !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1000px) {
|
|
.alertlike-modal {
|
|
.modal-wrapper {
|
|
width: 40% !important;
|
|
left: 30% !important;
|
|
}
|
|
}
|
|
} |