refactor(user-update-form.component.css): Nach style.scss verschoben, um es global zu machen

This commit is contained in:
Developer 02 2024-10-31 12:41:43 +01:00
parent b997ea4cce
commit 5551610dff
2 changed files with 45 additions and 43 deletions

View File

@ -1,43 +0,0 @@
.dd-container {
display: flex;
flex-direction: column;
padding: 0;
margin: 1rem 0 1rem 0;
justify-content: space-evenly;
}
.dd-row {
display: flex;
flex-direction: row;
padding: 0;
margin: 0;
}
.input-row {
justify-content: space-evenly;
}
.button-row {
align-items: center;
justify-content: center;
}
mat-form-field {
width: 100%;
margin: 0 1rem 0 1rem;
}
.dd-row button {
margin: 0 1rem 0 1rem;
}
.dd-container mat-divider {
margin: 0 0 1rem 0;
padding: 0;
}
@for $i from 1 through 20 {
.w#{$i * 5}p {
width: #{$i * 5 + "%"};
}
}

View File

@ -47,4 +47,49 @@ code {
.mdc-tab__text-label{ .mdc-tab__text-label{
font-size: medium; font-size: medium;
}
//Layout
.dd-container {
display: flex;
flex-direction: column;
padding: 0;
margin: 1rem 0 1rem 0;
justify-content: space-evenly;
}
.dd-row {
display: flex;
flex-direction: row;
padding: 0;
margin: 0;
}
.input-row {
justify-content: space-evenly;
}
.button-row {
align-items: center;
justify-content: center;
}
mat-form-field {
width: 100%;
margin: 0 1rem 0 1rem;
}
.dd-row button {
margin: 0 1rem 0 1rem;
}
.dd-container mat-divider {
margin: 0 0 1rem 0;
padding: 0;
}
@for $i from 1 through 20 {
.w#{$i * 5}p {
width: #{$i * 5 + "%"};
}
} }