mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-23 18:12:43 +00:00
68 lines
1.4 KiB
SCSS
68 lines
1.4 KiB
SCSS
/*!
|
|
* Copyright (C) 2023 StApps
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
@import 'src/theme/util/mixins';
|
|
|
|
a {
|
|
display: contents;
|
|
color: unset;
|
|
text-decoration: unset;
|
|
}
|
|
|
|
ion-grid {
|
|
width: 100%;
|
|
}
|
|
|
|
ion-label {
|
|
font-family: var(--headline-font-family);
|
|
font-weight: var(--font-weight-bold);
|
|
|
|
&:only-child {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
ion-grid {
|
|
padding: 0;
|
|
}
|
|
|
|
ion-col {
|
|
padding: 0;
|
|
}
|
|
|
|
:host ::ng-deep ion-button::part(native) {
|
|
padding-inline: var(--spacing-xs);
|
|
}
|
|
|
|
@media (hover: none) {
|
|
.swiper-button {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
:host {
|
|
display: block;
|
|
padding: var(--spacing-sm) var(--spacing-md) var(--spacing-sm);
|
|
--swiper-scroll-padding: var(--spacing-md);
|
|
--swiper-gap: var(--spacing-sm);
|
|
|
|
@include ion-md-up {
|
|
padding: var(--spacing-lg) var(--spacing-xxl) var(--spacing-sm);
|
|
--swiper-scroll-padding: var(--spacing-xxl);
|
|
}
|
|
}
|