Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/NavBar/NavBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
align-items: center;
padding: 20px;
flex-direction: column;
/* width: 100%; */
}

.nav-link {
Expand All @@ -16,11 +15,12 @@
padding: 10px;
font-size: 30px;
font-weight: bold;
/* font-style: italic; */
}

.nav-link:hover {
color: rgb(162, 68, 68);
/* border: 1px solid red;
margin-right: -2px; */
}

a:visited {
Expand Down
4 changes: 4 additions & 0 deletions src/components/Pages/Shows/Shows.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,8 @@
border-radius: 30px;
margin: 10px;
padding: 5px;
}

.show-date-description {

}
8 changes: 4 additions & 4 deletions src/components/Pages/Shows/Shows.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ export default function Shows() {
<h2 className='shows-page-header'>Upcoming Shows:</h2>
<ul className='show-dates-ul'>
<li className='show-date-li'>
<span>
<div className='show-date-description'>
May 28th, 2024<br />
@ DoubleWide<br />
w/ ASCENDED DEAD
</span>
</div>
</li>
<li className='show-date-li'>
<span>
<div className='show-date-description'>
May 31st, 2024<br />
@ Rubber Gloves<br />
w/ HERAKLEION
</span>
</div>
</li>
</ul>
</div>
Expand Down