work/src/components/EntryNavigation.css
coordinator cca0461b43
Some checks failed
Deploy Application / build (14.x) (push) Has been cancelled
Deploy Application / build (16.x) (push) Has been cancelled
Deploy Application / build (18.x) (push) Has been cancelled
worker-1: completed task task-entry-display [failed]
2026-04-08 00:14:14 +00:00

47 lines
728 B
CSS

.entry-navigation {
display: flex;
justify-content: space-between;
margin: 20px 0;
padding: 16px 0;
border-top: 1px solid #e9ecef;
border-bottom: 1px solid #e9ecef;
}
.nav-button {
padding: 10px 20px;
border-radius: 4px;
text-decoration: none;
font-weight: 500;
transition: all 0.2s;
}
.prev-button {
background-color: #007bff;
color: white;
}
.prev-button:hover {
background-color: #0056b3;
}
.next-button {
background-color: #28a745;
color: white;
}
.next-button:hover {
background-color: #1e7e34;
}
@media (max-width: 768px) {
.entry-navigation {
flex-direction: column;
gap: 10px;
align-items: center;
}
.nav-button {
width: 80%;
text-align: center;
}
}