Revamped Signing page to allow multiple signatures and images

This commit is contained in:
Saud Fatayerji
2023-05-07 23:39:34 +03:00
parent 07e81a117b
commit b86afd7fc9
6 changed files with 479 additions and 350 deletions

View File

@@ -16,11 +16,14 @@
html[lang-direction=ltr] * {
direction: ltr;
}
html[lang-direction=rtl] * {
direction: rtl;
text-align: right;
}
.ignore-rtl {
direction: ltr !important;
text-align: left !important;
}
.align-top {
position: absolute;
@@ -47,3 +50,11 @@ html[lang-direction=rtl] * {
border-top-left-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important;
}
.margin-auto-parent {
width: 100%;
display: flex;
}
.margin-center {
margin: 0 auto;
}