fixing button issues

This commit is contained in:
Luis Ramos 2025-12-09 11:58:43 -05:00
parent 2cd40b8934
commit 9f41ab7147
2 changed files with 16 additions and 2 deletions

View File

@ -4,3 +4,4 @@ services:
ports: ports:
- "5173:5173" - "5173:5173"
container_name: eits-web container_name: eits-web
restart: unless-stopped

View File

@ -86,7 +86,7 @@ img {
.btn { .btn {
display: inline-block; display: inline-block;
padding: 0.75rem 1.5rem; padding: 10px;
border-radius: var(--radius-md); border-radius: var(--radius-md);
font-weight: 600; font-weight: 600;
cursor: pointer; cursor: pointer;
@ -108,7 +108,6 @@ img {
.btn-outline { .btn-outline {
border: 2px solid var(--color-primary); border: 2px solid var(--color-primary);
color: var(--color-primary);
background: transparent; background: transparent;
} }
@ -131,6 +130,20 @@ img {
} }
} }
@media (max-width: 340px) {
.btn {
display: inline-block;
padding: 5px;
border-radius: var(--radius-md);
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
border: none;
}
}
.section-title { .section-title {
text-align: center; text-align: center;
font-size: 2.5rem; font-size: 2.5rem;