mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
#1403 bugfix css grid (customer-details page) on iOS devices
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
:host {
|
||||
@apply flex flex-col box-border gap-px-2 my-px-2;
|
||||
@apply grid flex-col box-border gap-px-2 my-px-2;
|
||||
}
|
||||
|
||||
.field {
|
||||
@apply flex flex-row gap-8 text-regular p-4 bg-white;
|
||||
@apply grid justify-items-start grid-flow-col flex-row gap-8 text-regular p-4 bg-white;
|
||||
grid-template-columns: max-content;
|
||||
.name {
|
||||
}
|
||||
|
||||
|
||||
@@ -28,7 +28,11 @@ a {
|
||||
}
|
||||
|
||||
ui-radio-group {
|
||||
@apply flex flex-col gap-px-2;
|
||||
@apply grid flex-col gap-px-2;
|
||||
}
|
||||
|
||||
ui-radio-button {
|
||||
@apply grid grid-flow-col;
|
||||
}
|
||||
|
||||
.address-row {
|
||||
@@ -41,18 +45,19 @@ ui-radio-group {
|
||||
}
|
||||
|
||||
.tags {
|
||||
@apply flex flex-row gap-4 justify-center items-center text-ucla-blue font-bold text-regular mb-px-40;
|
||||
@apply grid grid-flow-col flex-row gap-4 justify-center items-center text-ucla-blue font-bold text-regular mb-px-40;
|
||||
}
|
||||
|
||||
.tag {
|
||||
@apply flex items-center gap-2;
|
||||
@apply grid grid-flow-col items-center gap-2;
|
||||
}
|
||||
|
||||
.details {
|
||||
@apply flex flex-col text-regular gap-4;
|
||||
@apply grid flex-col text-regular gap-4;
|
||||
|
||||
.detail {
|
||||
@apply flex flex-row gap-8;
|
||||
@apply grid grid-flow-col justify-items-start flex-row gap-8;
|
||||
grid-template-columns: max-content;
|
||||
|
||||
.name {
|
||||
}
|
||||
|
||||
@@ -15,11 +15,11 @@
|
||||
height: 0;
|
||||
}
|
||||
|
||||
@apply flex-grow flex flex-row items-center gap-2 overflow-x-scroll;
|
||||
@apply flex-grow grid grid-flow-col flex-row items-center gap-2 overflow-x-scroll;
|
||||
}
|
||||
|
||||
.link-breadcrumb {
|
||||
@apply whitespace-nowrap text-active-customer flex flex-row items-center gap-2;
|
||||
@apply whitespace-nowrap text-active-customer grid grid-flow-col flex-row items-center gap-2;
|
||||
|
||||
&.active {
|
||||
@apply font-bold;
|
||||
|
||||
@@ -49,7 +49,7 @@ button.clear {
|
||||
}
|
||||
|
||||
.input-wrapper {
|
||||
@apply flex flex-row-reverse gap-4 flex-grow items-center;
|
||||
@apply grid grid-flow-col flex-row-reverse gap-4 flex-grow items-center;
|
||||
}
|
||||
|
||||
:host[type='radio'][variant='default'] ::ng-deep,
|
||||
|
||||
386
package-lock.json
generated
386
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user