isere-cd38: add text-decoration underline by default to links (#66688)

This commit is contained in:
Thomas Jund 2022-08-05 15:11:43 +02:00
parent 8fe1f022ba
commit 3ac5a8ecf7
2 changed files with 7 additions and 6 deletions

View File

@ -16,6 +16,9 @@ h2, .h2 { font-size: $fz-h2; }
h3, .h3 { font-size: $fz-h3; }
h4, .h4 { font-size: $fz-h4; }
a:hover {
color: $font-color;
}
.section-title {
font-size: $fz-h2;
@ -232,6 +235,9 @@ div#header {
align-self: center;
a {
display: block;
&:not(:hover) {
text-decoration: none;
}
}
@media (min-width: $nav-mobile-limit + 0.001) {
align-self: flex-start;
@ -429,12 +435,6 @@ div#main-content-wrapper {
h3 {
@extend .h3-txt;
}
a {
text-decoration: underline;
&:hover {
color: $font-color;
}
}
}
// current forms & draft cells
.list-of-forms {

View File

@ -34,6 +34,7 @@ $mobile-width: none;
$nav-mobile-limit: 50em;
$very-small-limit: 560px;
$font-family: $source-sans;
$link-decoration: underline;
$sidebar-position: right;
$sidebar-max-width: 400px;
$sidebar-width: 26%;