Skip to content

Commit f792e7f

Browse files
committed
fix: minor style issues
1 parent 2a810f5 commit f792e7f

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

static/css/v3/buttons.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,13 +242,13 @@ html.dark .btn-icon-library:hover {
242242

243243
/* ── Dark Mode ──────────────────────────────────── */
244244
html.dark {
245-
.btn-primary:hover, .btn-primary[data-hover], .btn-green:hover, .btn-green[data-hover], .btn-yellow:hover, .btn-yellow[data-hover], .btn-teal:hover, .btn-teal[data-hover] {
245+
:is(.btn-primary, .btn-green, .btn-yellow, .btn-teal):is(:hover, [data-hover]) {
246246
background-color: var(--color-secondary-dark-blue);
247247
border-color: var(--color-stroke-weak);
248248
color: var(--color-text-primary);
249249
}
250250

251-
.btn.btn-hero.btn-primary:hover,.btn.btn-hero.btn-primary[data-hover] {
251+
.btn.btn-hero.btn-primary:is(:hover, [data-hover]) {
252252
color: var(--color-text-on-accent);
253253
}
254254
}

static/css/v3/card.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
font-weight: var(--font-weight-medium);
6666
line-height: var(--line-height-tight);
6767
letter-spacing: var(--letter-spacing-display-regular);
68+
margin: 0;
6869
}
6970

7071
.card__hr {

static/css/v3/cards-carousel.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,14 @@
8787
overflow-x: auto;
8888
overflow-y: hidden;
8989
-webkit-overflow-scrolling: touch;
90+
scrollbar-width: none;
9091
min-width: 0;
9192
}
9293

94+
.cards-carousel__list::-webkit-scrollbar {
95+
display: none;
96+
}
97+
9398
.cards-carousel__item {
9499
list-style: none;
95100
flex: 0 0 300px;

0 commit comments

Comments
 (0)