Skip to content

Commit 5714e61

Browse files
committed
Improves sandbox card layout and styling
Removes !important overrides from tutorial card styles for better CSS specificity management. Increases the grid gap in the sandbox view to improve visual spacing.
1 parent a6b8366 commit 5714e61

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/components/tutorial-card/tutorial-card.module.css

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
.tutorialCard {
7-
padding: 16px !important;
7+
padding: 16px;
88
}
99

1010
.root {
@@ -13,9 +13,6 @@
1313
height: 100%;
1414
}
1515

16-
.eyebrow {
17-
}
18-
1916
.interactiveInline {
2017
display: flex;
2118
align-items: center;
@@ -30,5 +27,5 @@
3027

3128
.interactiveEyebrowBadge {
3229
background: transparent;
33-
padding-left: 0 !important;
30+
padding-left: 0;
3431
}

src/views/sandbox-view/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ export const SandboxView = ({
303303

304304
{availableSandboxes.length > 0 ? (
305305
<>
306-
<CardsGridList gridGap="8px">
306+
<CardsGridList gridGap="24px">
307307
{availableSandboxes.map((lab) => {
308308
return (
309309
<SandboxCard

0 commit comments

Comments
 (0)