Skip to content

Commit

Permalink
minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
to7m committed Aug 7, 2024
1 parent 1f9f08b commit 59657aa
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 5 deletions.
20 changes: 18 additions & 2 deletions public_html/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public_html/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions scss/body/main/_contact.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#contact {
display: grid;
grid-template-rows: auto;
grid-template-columns: 1fr 2fr;
grid-template-areas: "text form";
margin: 50px auto 0 auto;
}

#contact-text {
grid-area: text;
}

#contact-form {
grid-area: form;
}
1 change: 1 addition & 0 deletions scss/body/main/_index.scss
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
@use "project-previews";
@use "contact";
4 changes: 2 additions & 2 deletions scss/body/main/_project-previews.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@


#project-previews ul {
height: 1000px;
width: 600px;
display: grid;
grid-template-rows: repeat(2, 1fr);
grid-template-rows: repeat(2, auto);
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin: 50px auto 0 auto;
align-items: start;
}
Expand Down

0 comments on commit 59657aa

Please sign in to comment.