Files
openstapps/frontend/app/src/app/modules/news/page/news-page.scss
Thea Schöbl c1883abb50 refactor: migrate to angular esbuild
refactor: migrate to ionic standalone components
refactor: migrate ion icons to a custom element
2024-08-07 13:27:39 +02:00

39 lines
957 B
SCSS

/*!
* Copyright (C) 2022 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 '../../../../theme/util/mixins';
.news-grid {
@include auto-grid(300px);
display: grid;
gap: var(--spacing-sm);
margin: var(--spacing-sm);
> * {
height: 100%;
}
}
ion-content.ios > div > .news-grid {
@include auto-grid(350px);
gap: var(--spacing-lg);
margin: var(--spacing-lg);
}
.filter {
flex: 0;
}