Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions client-src/css/shared-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const SHARED_STYLES = [

* {
box-sizing: border-box;
/* font: inherit; */
/* font: inherit; */
text-decoration: inherit;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
Expand Down Expand Up @@ -72,6 +72,23 @@ export const SHARED_STYLES = [
cursor: pointer;
}


.roadmap-sidebar nav {
display: flex;
flex-direction: column;
gap: var(--content-padding-quarter);
}

.roadmap-sidebar nav a {
display: block;
line-height: 1.4;
}

.roadmap-sidebar nav a[aria-current="page"],
.roadmap-sidebar nav a.active {
margin-bottom: 0; /* spacing handled by gap */
}

input:not([type="submit"]),
textarea {
border: 1px solid var(--bar-border-color);
Expand Down Expand Up @@ -139,7 +156,7 @@ export const SHARED_STYLES = [
}

code {
font-family: monospace;
font-family: monospace;
}

.description {
Expand Down Expand Up @@ -239,7 +256,7 @@ export const SHARED_STYLES = [
background: var(--accordion-background);
font-weight: 300;
font-size: 20px;
padding: var(--content-padding-quarter) var(--content-padding-half)
padding: var(--content-padding-quarter) var(--content-padding-half);
}

sl-details::part(content) {
Expand All @@ -252,7 +269,7 @@ export const SHARED_STYLES = [
}

sl-relative-time {
margin: 0 -3px; // Mitigate spacing from unknown cause.
margin: 0 -3px; /* Mitigate spacing from unknown cause. */
}

sl-relative-time.no-squeeze {
Expand Down
Loading