Skip to content

Commit f44bf09

Browse files
committed
fix styles
1 parent 974a68f commit f44bf09

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/components/expandable/style.module.scss

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,24 @@
88
}
99

1010
.expandable-title-container {
11+
flex: 1;
1112
display: flex;
1213
align-items: center;
1314
gap: 0.7rem;
1415
}
1516

1617
.copy-button {
17-
background-color: var(--code-block-background);
18-
color: var(--text-default);
1918
border: 1px solid var(--gray-200);
2019
padding: 0.25rem 0.75rem;
21-
border-radius: var(--border-radius-medium);
20+
border-radius: 0.25rem;
2221
cursor: pointer;
23-
font-size: var(--font-size-small);
22+
font-size: 0.75rem;
2423
font-weight: 500;
2524
line-height: 1.2;
26-
transition: background-color 150ms linear, border-color 150ms linear, color 150ms linear;
25+
transition:
26+
background-color 150ms linear,
27+
border-color 150ms linear,
28+
color 150ms linear;
2729

2830
&:hover {
2931
background-color: var(--gray-100);

0 commit comments

Comments
 (0)