Skip to content

Commit

Permalink
Merge pull request #15 from kanidm/accessibility
Browse files Browse the repository at this point in the history
minor accessibility fixes
  • Loading branch information
yaleman authored Nov 5, 2023
2 parents d7cdc1e + 9af4e83 commit 3dfbd62
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
9 changes: 6 additions & 3 deletions themes/juice/sass/_text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
color: var(--primary-text-color);
}

div.logo{
div.logo {
color: var(--nav-text-color);
}

h1, .title-text {
h1,
.title-text {
font-family: var(--header-font-family);
font-size: 25px;
font-weight: 500;
Expand All @@ -19,7 +20,8 @@ h1, .title-text {
padding-left: 10px;
}

h2, .subtitle-text {
h2,
.subtitle-text {
font-family: var(--header-font-family);
font-size: 20px;
font-weight: 500;
Expand All @@ -40,4 +42,5 @@ h2, .subtitle-text {
font-size: 16px;
font-weight: 400;
letter-spacing: 0.1px;
text-decoration: none;
}
8 changes: 7 additions & 1 deletion themes/juice/sass/juice.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body {
}

a {
text-decoration: none;
text-decoration: dotted underline;
}

ul {
Expand All @@ -36,6 +36,12 @@ header {
display: flex;
align-items: center;
justify-content: space-between;
text-decoration: none;
}

header a {
text-decoration: none;

}

.logo {
Expand Down
4 changes: 2 additions & 2 deletions themes/juice/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ <h3 class="title-text">
aria-label="Fork kanidm/kanidm on GitHub">Fork</a>
</div>
</section>
<img class="hero-image" style="width: 50%" src="{{ get_url(path="images/logo.svg")
}}">
<img class="hero-image" alt="Kanidm Logo" style="width: 50%"
src="{{ get_url(path="images/logo.svg") }}">

<!-- <div class="explore-more text"
onclick="document.getElementById('features').scrollIntoView({behavior: 'smooth'})">
Expand Down

0 comments on commit 3dfbd62

Please sign in to comment.