Skip to content
Snippets Groups Projects
Commit 0632e23b authored by Bastien DUMONT's avatar Bastien DUMONT :angel:
Browse files

chore: fix label layout shift

parent 0446bf9d
No related branches found
No related tags found
1 merge request!608V2.4.2
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<p>Facultatif</p> <p>Facultatif</p>
</div> </div>
</div> </div>
<div *ngIf="labelsQualifications" class="labelsQualifications" fxLayout="row wrap" fxLayoutAlign="flex-start"> <div *ngIf="labelsQualifications" class="labelsQualifications">
<app-checkbox-form <app-checkbox-form
*ngFor="let module of labelsQualifications.modules.sort()" *ngFor="let module of labelsQualifications.modules.sort()"
[isChecked]="isInArray(module.id, 'labelsQualifications')" [isChecked]="isInArray(module.id, 'labelsQualifications')"
......
.labelsQualifications { .labelsQualifications {
gap: 0 8px; gap: 8px;
display: flex;
flex-wrap: wrap;
} }
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
@import 'typography'; @import 'typography';
button { button {
width: 296px; width: 300px;
height: 65px; height: 65px;
margin-top: 8px; margin: 0;
background: $grey-8; background: $grey-8;
padding: 0 16px; padding: 0 16px;
border-radius: 4px; border-radius: 4px;
...@@ -35,7 +35,7 @@ button { ...@@ -35,7 +35,7 @@ button {
} }
&:hover { &:hover {
border: 1px solid $grey-4; border-color: $grey-4;
p { p {
color: $grey-3; color: $grey-3;
} }
...@@ -43,7 +43,7 @@ button { ...@@ -43,7 +43,7 @@ button {
&.selected { &.selected {
background: $white; background: $white;
border: 3px solid $green-1; border-color: $green-1;
} }
.checkmark { .checkmark {
width: 24px; width: 24px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment