Skip to content

Commit

Permalink
Merge branch 'master' into opti-activation-from-master
Browse files Browse the repository at this point in the history
  • Loading branch information
EmileRolley committed Feb 27, 2023
2 parents bda71e5 + 3d24573 commit 4943454
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 5 deletions.
5 changes: 5 additions & 0 deletions FICHEPRODUIT.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@

> ⚠️ Attention, la dernière version de cette fiche est à consulter sur [le dépôt beta.gouv.fr](https://github.com/betagouv/beta.gouv.fr/blob/master/content/_startups/nosgestesclimat.md).


## Le drame

On ne présente plus le changement climatique. 1,5 degrés, 2 degrés, ce sont des objectifs aujourd'hui bien connus. Seulement, des faits et mécanismes physiques et des chiffres de réchauffement planétaires, comment se traduisent les objectifs de l'accord de Paris dans notre vie quotidienne ? Autrement dit, quelle est *mon* empreinte sur le climat, de quoi est-elle constituée ? Et comment puis-je agir dessus, efficacement ?
Expand Down
2 changes: 1 addition & 1 deletion nosgestesclimat
14 changes: 12 additions & 2 deletions source/components/SessionBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ const MenuButton = styled.div`
}
height: auto;
}
@media (max-height: 700px) {
img,
svg {
display: none;
}
}
`

const Button = (props) => {
Expand All @@ -78,7 +84,7 @@ const Button = (props) => {
}
: {})}
>
<MenuButton {...props} />{' '}
<MenuButton {...props} />
</Link>
)
}
Expand Down Expand Up @@ -333,7 +339,7 @@ const NavBar = styled.ul`
list-style-type: none;
justify-content: space-evenly !important;
align-items: center;
height: 3.5rem;
margin: 0;
width: 100%;
height: 4rem;
Expand All @@ -352,6 +358,10 @@ const NavBar = styled.ul`
width: 100%;
}
}
@media (max-height: 700px) {
height: 2rem;
}
`

const GroupModeMenuEntry = ({ title, icon, url, children, buttonStyle }) => {
Expand Down
12 changes: 11 additions & 1 deletion source/sites/publicodes/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import useMediaQuery from '../../components/utils/useMediaQuery'
import { TrackerContext } from '../../components/utils/withTracker'
import LandingExplanations from './LandingExplanations'
import { useProfileData } from './Profil'

const LazyIllustration = React.lazy(
() => import('Components/AnimatedIllustration')
)
Expand Down Expand Up @@ -79,6 +80,15 @@ export default () => {
font-size: 180%;
}
}
@media (max-height: 700px) {
/*target iPhone 5 SE */
h1 {
font-size: 160%;
}
svg {
max-width: 12rem !important;
}
}
`}
>
<div
Expand All @@ -93,7 +103,7 @@ export default () => {
Connaissez-vous votre empreinte sur le climat ?
</Trans>
</h1>
{mobile && <Illustration small aira-hidden="true" />}
{mobile && <Illustration aira-hidden="true" />}
<p>
<Trans i18nKey={'sites.publicodes.Landing.description'}>
En 10 minutes, obtenez une estimation de votre empreinte carbone
Expand Down
9 changes: 8 additions & 1 deletion source/sites/publicodes/ScoreBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,14 @@ export default ({ actionMode = false, demoMode = false }) => {
left: 0;
z-index: 10;
width: 100%;
}`}
}
@media (max-height: 700px) {
bottom: 2rem
}
`}
color: var(--textColor);
a {
Expand Down

0 comments on commit 4943454

Please sign in to comment.