-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♿️ Rend les liens retour accessibles en zoom 200%
En cas d'écran trop étroit ou de zoom 200%, les liens se retrouvaient en dehors de l'écran. Ils sont maintenant dans le haut du panel
- Loading branch information
1 parent
5d20f87
commit 2fb1431
Showing
3 changed files
with
20 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
.index { | ||
.lien-retour { | ||
position: absolute; | ||
left: -8.5rem; | ||
@media (min-width: 760px) { | ||
.lien-retour { | ||
position: absolute; | ||
left: -8.5rem; | ||
} | ||
} | ||
} | ||
|
||
.new, .edit, .show, .create, .update { | ||
.lien-retour { | ||
position: absolute; | ||
left: -8.5rem; | ||
#content_wrapper:not(.conteneur-elargi) { | ||
@media (min-width: 760px) { | ||
.lien-retour { | ||
position: absolute; | ||
left: -8.5rem; | ||
} | ||
} | ||
} | ||
|
||
.conteneur-elargi { | ||
.lien-retour { | ||
position: absolute; | ||
left: -13rem; | ||
@media (min-width: 1040px) { | ||
.lien-retour { | ||
position: absolute; | ||
left: -13rem; | ||
} | ||
} | ||
} | ||
} |