Add more flex utilities
This commit is contained in:
parent
e8a5edafa5
commit
58d2386c61
|
|
@ -4,7 +4,7 @@ showTitle: false
|
||||||
order: 4
|
order: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="flex-container justify-center download">
|
<div class="flex justify-center items-center download">
|
||||||
<p>Vous souhaitez imprimer ce document ?</p>
|
<p>Vous souhaitez imprimer ce document ?</p>
|
||||||
<i>--></i>
|
<i>--></i>
|
||||||
<button type="button" onclick="window.print()" class="btn btn-download icon--right icon-download">Télécharger en PDF</button>
|
<button type="button" onclick="window.print()" class="btn btn-download icon--right icon-download">Télécharger en PDF</button>
|
||||||
|
|
|
||||||
|
|
@ -28,21 +28,24 @@
|
||||||
background-color: var(--background-color, none);
|
background-color: var(--background-color, none);
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex-container {
|
.flex {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
}
|
||||||
|
|
||||||
&.flex-col {
|
.flex-col {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.justify-around {
|
.justify-around {
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.justify-center {
|
.justify-center {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.items-center {
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sr-only {
|
.sr-only {
|
||||||
|
|
|
||||||
|
|
@ -301,12 +301,6 @@ section {
|
||||||
}
|
}
|
||||||
|
|
||||||
.competences-section {
|
.competences-section {
|
||||||
> div {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
|
|
||||||
.col {
|
.col {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue