Skip to content

Commit

Permalink
Reduce borders to 1px
Browse files Browse the repository at this point in the history
  • Loading branch information
lolgesten committed Jun 19, 2024
1 parent fd47af4 commit bbe7081
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"dependencies": {
"@11ty/eleventy": "^0.7.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^2",
"@lookback/lookbook": "^6.0.5",
"@lookback/lookbook": "^6.0.6",
"dotenv": "^6",
"postcss": "^8",
"postcss-cli": "^10",
Expand Down
2 changes: 1 addition & 1 deletion src/stylesheets/base-styling.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ main {
}

> h2 {
@apply mb-2 mt-4 pb-1 border-b-2;
@apply mb-2 mt-4 pb-1 border-b-1;
}

> h3 {
Expand Down
2 changes: 1 addition & 1 deletion src/stylesheets/utils.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.preview-block {
@apply border-2 border-b-0 rounded-t-lg p-3 bg-white;
@apply border-1 border-b-0 rounded-t-lg p-3 bg-white;

& + pre {
border-radius: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/tech/classes.njk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ layout: layout.njk

{% for group in lookbook.groupedClasses %}
<section class="mb-6">
<header class="flex items-center justify-between border-b-2 mb-3">
<header class="flex items-center justify-between border-b-1 mb-3">
<h2 id="{{ group.title | slug }}">{{ group.title }}</h2>

<div class="flex items-center">
Expand Down

0 comments on commit bbe7081

Please sign in to comment.