Remove duplicate css

This commit is contained in:
Greg Shuflin 2025-02-05 03:55:46 -08:00
parent 682292d71b
commit ea46dc9bea

View File

@ -150,69 +150,6 @@ body.with-sidebar {
opacity: 0.9;
}
/* Top bar styles */
.top-bar {
background-color: #333;
color: white;
padding: 0.5rem 1rem;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}
.top-bar-title {
font-size: 1.5rem;
margin: 0;
color: var(--primary-red);
font-weight: 500;
text-align: center;
grid-column: 2;
}
.feed-title-separator {
color: var(--text-muted);
margin: 0 0.5rem;
}
.top-bar-buttons {
display: flex;
gap: 1rem;
align-items: center;
}
.logout-button {
background-color: #dc3545;
color: white;
border: none;
padding: 0.5rem 1rem;
border-radius: 4px;
cursor: pointer;
font-size: 0.9rem;
}
.logout-button:hover {
background-color: #c82333;
}
.add-feed-button {
background-color: #28a745;
color: white;
border: none;
padding: 0.5rem 1rem;
border-radius: 4px;
cursor: pointer;
font-size: 0.9rem;
}
.add-feed-button:hover {
background-color: #218838;
}
/* Modal styles */
.modal {
display: none;