Interface SAV

This commit is contained in:
Jonathan Chevalier
2023-06-21 18:26:43 +02:00
parent b0f9cf2dd8
commit b770fb5fdb
78 changed files with 8449 additions and 79 deletions

View File

@@ -0,0 +1,7 @@
// Center-align a block level element
@mixin center-block() {
display: block;
margin-left: auto;
margin-right: auto;
}