Skip to content

Commit

Permalink
Apply clearfix
Browse files Browse the repository at this point in the history
Signed-off-by: m4rc3l05 <[email protected]>
  • Loading branch information
M4RC3L05 committed May 7, 2024
1 parent 4b2488d commit da67f30
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/apps/web/public/css/main.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
@import url("https://esm.sh/v135/[email protected]/simple.min.css");


.clearfix::after {
content: "";
clear: both;
display: table;
}

#feed-item-content {
overflow-x: auto;
}
Expand Down
2 changes: 1 addition & 1 deletion src/apps/web/views/feed-items/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export const FeedItemsIndexPage: FC<FeedItemsIndexPageProps> = ({
<main>
{feedItems.map(
(feedItem) => (
<section style="position: relative">
<section style="position: relative; overflow: auto" class="clearfix">
{feedItem.img
? (
<>
Expand Down

0 comments on commit da67f30

Please sign in to comment.