Skip to content

Commit

Permalink
Layout Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgriv committed Jul 18, 2024
1 parent 0fbbaf2 commit 92295ac
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
8 changes: 7 additions & 1 deletion .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.7] - 2024-07-18

### Added

- Layout Changes.

## [1.1.6] - 2024-07-17

### Added

- Town Bulletin Board Section.
- Village Bulletin Board Section.

## [1.1.5] - 2024-07-12

Expand Down
10 changes: 7 additions & 3 deletions src/components/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ a {
hr {
border: none; /* Remove the default border */
border-top: 2px solid #2d449b; /* Set the top border color and thickness */
width: 75%; /* Set the desired width */
margin: 20px auto; /* Center the <hr> element */
width: 67%; /* Set the desired width */
margin-bottom: 20px auto; /* Center the <hr> element */
}

.bulletin-board-container {
Expand Down Expand Up @@ -82,7 +82,7 @@ hr {
position: absolute;
top: 0px; /* Adjust as needed */
left: 4px; /* Adjust as needed */
transform: rotate(-45deg); /* Adjust the rotation if needed */
transform: rotate(45deg); /* Adjust the rotation if needed */
}

.bulletin-board ul {
Expand Down Expand Up @@ -564,6 +564,10 @@ button:focus {
font-style: italic;
}

hr {
width: 96%; /* Set the desired width */
}

.platform-grid {
grid-template-columns: 1fr; /* Single column layout */
gap: 10px;
Expand Down
10 changes: 6 additions & 4 deletions src/pages/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Home() {
<div className="bulletin-board">
<h3>
<i class="fa-solid fa-thumbtack thumbtack-icon"></i>
Town Bulletin Board
Village Bulletin Board
</h3>
<ul>
<p>07/12/2024</p>
Expand All @@ -30,6 +30,7 @@ export default function Home() {
</div>
</div>

<h2 className="platform-wrapper">About</h2>
<p>
Dark Castle is a vibrantly elegant dark theme available for multiple
platforms. Inspired by the timeless beauty and mystery of medieval
Expand Down Expand Up @@ -269,6 +270,10 @@ export default function Home() {
</a>
{/* Add more platform cards as needed */}
</div>
<div>
<ColorPalette />
</div>
<h2 className="platform-wrapper">Contributing</h2>
<p>
If your favorite platform isn't listed here, we invite you to join in
our theme conquest by{" "}
Expand All @@ -284,9 +289,6 @@ export default function Home() {
range of platforms still to be covered. Your contributions are
invaluable in helping us expand and improve this theme for everyone!
</p>
<div>
<ColorPalette />
</div>
</Layout>
)
}

0 comments on commit 92295ac

Please sign in to comment.