This commit is contained in:
2023-03-05 16:33:02 +01:00
parent 9e31652f47
commit 02cd893370
3 changed files with 100 additions and 11 deletions

View File

@ -263,6 +263,7 @@ input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="time"],
textarea,
select {
height: 38px;
@ -280,6 +281,7 @@ input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="time"],
textarea {
-webkit-appearance: none;
-moz-appearance: none;
@ -295,6 +297,7 @@ input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
border: 1px solid #222;
@ -461,6 +464,11 @@ there.
justify-content: end;
}
.content-align-bottom {
display: flex;
align-items: flex-end;
}
.font-base {
font-size: 1.2rem !important;
}
@ -490,6 +498,14 @@ there.
margin-bottom: 3rem;
}
.mr-2 {
margin-right: 2rem;
}
.mt-1 {
margin-top: 1rem;
}
.w-full {
width: 100%;
}
@ -522,6 +538,22 @@ there.
color: #fff;
}
.text-red {
color: red;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-left {
text-align: left;
}
.data-block[data-needed="true"] {
border: 3px solid red;
}