Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Kevin/fix style on safari #2085

Merged
5 commits merged into from
Sep 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/pages/academy/components/recent-featured-posts/_style.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export const MainArticle = styled(Flex)`
export const Description = styled.div`
position: absolute;
left: 0;
bottom: 0;
padding: 24px 40px 0 40px;
margin-bottom: 80px;

Expand Down Expand Up @@ -222,10 +223,16 @@ export const SmallArticleLeftContent = styled(Flex)`
export const SmallArticleRightContent = styled(Flex)`
margin-left: 10px;
flex-direction: column;
/* stylelint-disable */
-webkit-justify-content: space-between;
/* stylelint-enable */
justify-content: space-between;

@media ${device.laptopM} {
justify-content: flex-start;
/* stylelint-disable */
-webkit-justify-content: flex-start;
/* stylelint-enable */
}

@media (max-width: 425px) {
Expand Down Expand Up @@ -268,6 +275,10 @@ export const SmallArticleTopContent = styled(Flex)`
height: 30px;
justify-content: flex-start;
flex-direction: column;
/* stylelint-disable */
flex: 1 1 15em;
-webkit-flex: 1 1 15em;
/* stylelint-enable */
@media ${device.laptopM} {
flex-direction: row;

Expand Down