Skip to content

Commit

Permalink
restore closer to original drop shadows
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Jan 28, 2025
1 parent eb512d6 commit ad1b0f7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
9 changes: 5 additions & 4 deletions src/components/hero-banner/hero-banner.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
background-color: var(--color-primary);
width: 100%;
color: var(--color-white) !important;
box-shadow: var(--shadow-4);
box-shadow: var(--shadow-3);
margin-top: var(--size-fluid-1);
height: fit-content;
text-decoration: none;
Expand All @@ -77,7 +77,7 @@
.snippet {
border-radius: var(--radius-4);
border: var(--radius-1) solid #c1d3cd;
box-shadow: var(--shadow-4);
box-shadow: var(--shadow-2);
margin: var(--size-px-2) 0;
text-align: center;
padding: var(--size-1);
Expand All @@ -86,9 +86,9 @@

.snippet pre {
font-size: 16px;
height: 46px;
height: 50px;
align-content: center;
display: inline;
display: inline-block;
background-color: transparent;
color: var(--color-black);
vertical-align: middle;
Expand Down Expand Up @@ -134,6 +134,7 @@
.snippet pre {
padding: 0 10px;
vertical-align: text-top;
display: inline;
}

.snippet app-ctc-button {
Expand Down
2 changes: 1 addition & 1 deletion src/components/latest-post/latest-post.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
border-radius: var(--radius-4);
padding: var(--size-2);
border: var(--radius-1) solid var(--color-gray-background);
box-shadow: var(--shadow-2);
box-shadow: var(--shadow-1);
text-align: left;

& .new {
Expand Down
2 changes: 1 addition & 1 deletion src/components/run-anywhere/run-anywhere.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
.iconBox {
border-radius: var(--radius-3);
border: 1px solid var(--color-gray-background);
box-shadow: var(--shadow-2);
box-shadow: var(--shadow-1);
background-color: var(--color-white);
height: 150px;
align-content: center;
Expand Down
2 changes: 1 addition & 1 deletion src/components/side-nav/side-nav.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
border: none;
padding: var(--size-2);
border-radius: var(--radius-2);
box-shadow: var(--shadow-3);
box-shadow: var(--shadow-1);
color: var(--color-black);

@media (prefers-reduced-motion: no-preference) {
Expand Down
4 changes: 2 additions & 2 deletions src/components/table-of-contents/table-of-contents.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
min-height: 250px;
margin: 0 var(--size-2);
border: 1px solid var(--color-gray);
box-shadow: var(--shadow-4);
box-shadow: var(--shadow-3);
padding: var(--size-2);
}

Expand All @@ -36,7 +36,7 @@
border: none;
padding: var(--size-2);
border-radius: var(--radius-2);
box-shadow: var(--shadow-3);
box-shadow: var(--shadow-2);

@media (prefers-reduced-motion: no-preference) {
& #indicator {
Expand Down

0 comments on commit ad1b0f7

Please sign in to comment.