Skip to content

Commit b1c5d07

Browse files
authored
Update fast-search-card.js
1 parent 862131b commit b1c5d07

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dist/fast-search-card.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1393,17 +1393,17 @@ class FastSearchCard extends HTMLElement {
13931393
display: none;
13941394
}
13951395

1396-
/* Mobile: Mobile-Tabs zeigen, Desktop-Tabs verstecken */
13971396
@media (max-width: 768px) {
13981397
.desktop-tabs {
13991398
display: none;
14001399
}
14011400

14021401
.mobile-tabs {
1403-
display: block;
1404-
position: absolute;
1405-
right: 0;
1406-
top: 0;
1402+
display: flex; /* ← flex statt block */
1403+
justify-content: flex-end; /* ← rechts positionieren */
1404+
padding-right: 20px; /* ← gleich wie Desktop */
1405+
padding-top: 20px;
1406+
padding-bottom: 10px;
14071407
}
14081408

14091409
.detail-content {

0 commit comments

Comments
 (0)