mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
committed by
Andreas Schickinger
parent
abdbab807d
commit
1dbd3fd274
@@ -256,7 +256,6 @@
|
||||
.recommendations-overlay {
|
||||
@apply absolute w-full top-0 rounded-t-card;
|
||||
top: 56px;
|
||||
max-width: 916px;
|
||||
|
||||
.product-button {
|
||||
@apply flex flex-row justify-center items-center w-full text-xl bg-white text-ucla-blue font-bold border-none outline-none rounded-t-card;
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
.catalog-search-filter-content {
|
||||
@apply relative mx-auto p-4;
|
||||
max-width: 916px;
|
||||
}
|
||||
|
||||
.btn-close {
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
.customer-search-filter-content {
|
||||
@apply relative mx-auto p-4;
|
||||
max-width: 916px;
|
||||
}
|
||||
|
||||
.btn-close {
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
.goods-in-search-filter-content {
|
||||
@apply relative mx-auto;
|
||||
max-width: 916px;
|
||||
}
|
||||
|
||||
.btn-close {
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
.goods-out-search-filter-content {
|
||||
@apply relative mx-auto;
|
||||
max-width: 916px;
|
||||
}
|
||||
|
||||
.btn-close {
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
.remission-filter-content {
|
||||
@apply relative mx-auto p-4;
|
||||
max-width: 916px;
|
||||
}
|
||||
|
||||
.btn-close {
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
.filter-content {
|
||||
@apply relative mx-auto p-4;
|
||||
max-width: 916px;
|
||||
}
|
||||
|
||||
.filter-header {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
div {
|
||||
@apply z-fixed mx-auto;
|
||||
height: calc(100vh - 8.375rem);
|
||||
width: 884px;
|
||||
@apply w-content;
|
||||
background-color: var(--bg-color);
|
||||
}
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { FilterOverlayComponent } from './filter-overlay.component';
|
||||
import { ShellFilterOverlayComponent } from './filter-overlay.component';
|
||||
|
||||
describe('FilterOverlayComponent', () => {
|
||||
let component: FilterOverlayComponent;
|
||||
let fixture: ComponentFixture<FilterOverlayComponent>;
|
||||
describe('ShellFilterOverlayComponent', () => {
|
||||
let component: ShellFilterOverlayComponent;
|
||||
let fixture: ComponentFixture<ShellFilterOverlayComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [FilterOverlayComponent],
|
||||
declarations: [ShellFilterOverlayComponent],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(FilterOverlayComponent);
|
||||
fixture = TestBed.createComponent(ShellFilterOverlayComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
@@ -40,11 +40,6 @@
|
||||
right: auto !important;
|
||||
}
|
||||
|
||||
@screen desktop-l {
|
||||
margin-left: 600px;
|
||||
right: auto !important;
|
||||
}
|
||||
|
||||
&.no-shadow {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
@@ -3,10 +3,8 @@ module.exports = {
|
||||
darkMode: 'media', // or 'media' or 'class'
|
||||
theme: {
|
||||
screens: {
|
||||
tablet: '640px',
|
||||
desktop: '1024px',
|
||||
'desktop-l': '1280px',
|
||||
'desktop-xl': '1680px',
|
||||
tablet: '640px', // 744 x 1133 iPad Optimale Auflösung
|
||||
desktop: '1024px', // 1440 x 1024 Desktop Optimale Auflösung
|
||||
},
|
||||
zIndex: {
|
||||
dropdown: 50,
|
||||
@@ -30,8 +28,11 @@ module.exports = {
|
||||
'card-sub': '20px',
|
||||
'page-heading': '26px',
|
||||
},
|
||||
width: {
|
||||
content: '1280px',
|
||||
},
|
||||
maxWidth: {
|
||||
content: '916px',
|
||||
content: '1280px',
|
||||
},
|
||||
spacing: {
|
||||
'cta-x-l': '25px',
|
||||
|
||||
Reference in New Issue
Block a user