Final build for deployment v1.1.0

This commit is contained in:
choibk 2026-01-19 19:57:34 +09:00
parent 8d95d5eb93
commit 22270746e6

View File

@ -1443,8 +1443,34 @@ img {
gap: 1.25rem;
}
.profile-list li {
font-size: 1.05rem;
/* NewsDetail Back Button */
.article-footer {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid var(--border-color);
text-align: center;
}
.back-button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.75rem 2rem;
background-color: var(--white);
color: var(--text-color);
font-weight: 500;
border: 1px solid var(--border-color);
border-radius: 9999px;
font-weight: 600;
text-decoration: none;
transition: all 0.2s;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.back-button:hover {
background-color: var(--light-gray);
color: var(--primary-color);
border-color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}