- Fix footer CSS import path for consistency
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

- Update button link in Hero component to anchor to the events section
- Improve circle image styling in Drinks.css for proper alignment and aesthetics
This commit is contained in:
2025-11-08 17:31:10 +01:00
parent 48bae59264
commit f7521734bf
3 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,6 @@
--- ---
// src/components/Footer.astro // src/components/Footer.astro
import "/styles/components/Footer.css" import "../styles/components/Footer.css"
const currentYear = new Date().getFullYear(); const currentYear = new Date().getFullYear();
--- ---

View File

@ -15,7 +15,7 @@ const { id } = Astro.props;
<p>Im Herzen von St.Gallen</p> <p>Im Herzen von St.Gallen</p>
<a href="#" class="button">Aktuelles ↓</a> <a href="#events" class="button">Aktuelles ↓</a>
</div> </div>
</div> </div>

View File

@ -94,6 +94,16 @@
justify-content: center; justify-content: center;
align-items: center; align-items: center;
cursor: pointer; cursor: pointer;
overflow: hidden; /* ensure inner image stays within the circle */
}
/* Make images truly circular and fit the frame */
.circle-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
display: block;
} }
.circle:hover { .circle:hover {