Skip to content

Commit

Permalink
Quick fix on commune page style
Browse files Browse the repository at this point in the history
  • Loading branch information
nkokla committed Nov 18, 2024
1 parent 0786927 commit da437b6
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions src/app/commune/[codeCommune]/ResumeDistrict.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,33 @@ import styled from 'styled-components'

export const ResumeDistrictWrapper = styled.div`
display: flex;
flex-direction: row;
flex-direction: column;
justify-content: space-between;
line-height: 2.25;
margin: 1rem 0;
padding: 1rem 0;
@media (min-width: ${({ theme }) => theme.breakpoints.md}) {
flex-direction: row;
}
ul {
margin: 0;
}
`

export const ResumeDistrictActionsWrapper = styled.div`
display: flex;
flex-direction: row;
flex-direction: column;
justify-content: flex-end;
align-items: center;
gap: 1rem;
margin: 2rem 0;
@media (min-width: ${({ theme }) => theme.breakpoints.md}) {
flex-direction: row;
}
`

export const DistrictDetailsItem = styled.li`
Expand Down

0 comments on commit da437b6

Please sign in to comment.