Add generic modal

This commit is contained in:
2021-02-24 09:14:58 +01:00
parent 23f5e954c9
commit 7f5a698b20
27 changed files with 2049 additions and 468 deletions
+81
View File
@@ -156,4 +156,85 @@
}
.align-self-stretch {
align-self: stretch !important;
}
.m-t-20 {
margin-top: 20px;
}
.m-b-20 {
margin-bottom: 20px;
}
.m-l-20 {
margin-left: 20px;
}
.m-l-auto {
margin-left: auto;
}
.m-r-20 {
margin-right: 20px;
}
.m-auto {
margin: 0 auto;
}
.pd-10 {
padding: 10px;
box-sizing: border-box;
}
.pd-t-20 {
padding-top: 20px;
}
.pd-b-20 {
padding-bottom: 20px;
}
.pd-r-20 {
padding-right: 20px;
}
.pd-l-20 {
padding-left: 20px;
}
.text-bold {
font-weight: 700;
}
.text-blue {
color: #0d89d1;
}
.text-red {
color: #d30a0a;
}
.text-dark-blue {
color: #061b52;
}
.text-grey {
color: #797979;
}
.text-white {
color: white;
}
.text-black {
color: black;
}
.text-center {
text-align: center;
}