Merged PR 1456: Breite für Desktop angepasst

Related work items: #3700
This commit is contained in:
Lorenz Hilpert
2022-12-16 11:08:08 +00:00
committed by Andreas Schickinger
parent abdbab807d
commit 1dbd3fd274
11 changed files with 13 additions and 24 deletions

View File

@@ -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;

View File

@@ -4,7 +4,6 @@
.catalog-search-filter-content {
@apply relative mx-auto p-4;
max-width: 916px;
}
.btn-close {

View File

@@ -4,7 +4,6 @@
.customer-search-filter-content {
@apply relative mx-auto p-4;
max-width: 916px;
}
.btn-close {

View File

@@ -4,7 +4,6 @@
.goods-in-search-filter-content {
@apply relative mx-auto;
max-width: 916px;
}
.btn-close {

View File

@@ -4,7 +4,6 @@
.goods-out-search-filter-content {
@apply relative mx-auto;
max-width: 916px;
}
.btn-close {

View File

@@ -4,7 +4,6 @@
.remission-filter-content {
@apply relative mx-auto p-4;
max-width: 916px;
}
.btn-close {

View File

@@ -4,7 +4,6 @@
.filter-content {
@apply relative mx-auto p-4;
max-width: 916px;
}
.filter-header {

View File

@@ -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);
}

View File

@@ -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();
});

View File

@@ -40,11 +40,6 @@
right: auto !important;
}
@screen desktop-l {
margin-left: 600px;
right: auto !important;
}
&.no-shadow {
box-shadow: none;
}

View File

@@ -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',