We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 862131b commit b1c5d07Copy full SHA for b1c5d07
dist/fast-search-card.js
@@ -1393,17 +1393,17 @@ class FastSearchCard extends HTMLElement {
1393
display: none;
1394
}
1395
1396
- /* Mobile: Mobile-Tabs zeigen, Desktop-Tabs verstecken */
1397
@media (max-width: 768px) {
1398
.desktop-tabs {
1399
1400
1401
1402
.mobile-tabs {
1403
- display: block;
1404
- position: absolute;
1405
- right: 0;
1406
- top: 0;
+ display: flex; /* ← flex statt block */
+ justify-content: flex-end; /* ← rechts positionieren */
+ padding-right: 20px; /* ← gleich wie Desktop */
+ padding-top: 20px;
+ padding-bottom: 10px;
1407
1408
1409
.detail-content {
0 commit comments