fix(login): add text-decoration: underline on the sub-formfield links (#5012)

* fix: login underline

* a styles
This commit is contained in:
Max Peintner 2023-01-12 15:04:04 +01:00 committed by GitHub
parent c9445227c5
commit e7a97b1f3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,5 @@
a {
text-decoration: none;
outline: none;
cursor: pointer;
margin: 2px 0;
@ -10,5 +9,6 @@ a {
&.sub-formfield-link {
margin: 10px 0;
text-decoration: underline;
}
}

View File

@ -417,6 +417,7 @@ select::placeholder,
max-width: 150px;
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.lgn-label {
@ -516,7 +517,6 @@ select::placeholder,
a {
text-decoration: none;
outline: none;
cursor: pointer;
margin: 2px 0;
}
@ -525,6 +525,7 @@ a.block {
}
a.sub-formfield-link {
margin: 10px 0;
text-decoration: underline;
}
.lgn-idp {
@ -1391,6 +1392,7 @@ select::placeholder,
max-width: 150px;
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.lgn-label {
@ -1490,7 +1492,6 @@ select::placeholder,
a {
text-decoration: none;
outline: none;
cursor: pointer;
margin: 2px 0;
}
@ -1499,6 +1500,7 @@ a.block {
}
a.sub-formfield-link {
margin: 10px 0;
text-decoration: underline;
}
.lgn-idp {

File diff suppressed because one or more lines are too long