# Empfohlene Themen

**URL:** https://meta.discourse.org/t/featured-topics/217580
**Category:** Theme component
**Created:** [8. Februar 2022 um 21:38 UTC](https://meta.discourse.org/t/featured-topics/217580 "2022-02-08T21:38:36Z")
**Posts on this page:** 1
**Showing post:** 35

<div class="post-metadata">

### Author: ![jrgong](https://avatars.discourse-cdn.com/v4/letter/j/c57346/32.png) [@jrgong](https://meta.discourse.org/u/jrgong)
#### Post date: [29. November 2024 um 11:15 UTC](https://meta.discourse.org/t/featured-topics/217580/35 "2024-11-29T11:15:06Z")

</div>

Das funktioniert jetzt auf dem Desktop! Aber nicht auf dem Handy. Ich habe schon etwas CSS für das horizontale Scrollen auf dem Handy zusammengebastelt, aber es ist nicht wirklich ausgefeilt 😃

Außerdem habe ich die Schriftgröße angepasst, da die Titelschriftgröße für die kleine Bildschirmgröße zu groß war

```css
.featured-cards-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1rem;
    align-content: flex-start;
    overflow-x: auto;
    max-height: 350px;
}
.featured-cards-container .featured-card {
    min-width: 90%;
    
}

.featured-card a.card-content .card-details .topic-title {
    font-size: var(--font-up-1);
}

```

---

_[View the full topic](https://meta.discourse.org/t/featured-topics/217580)._
