Skip to content

Commit

Permalink
fix(events): avoid x overflow in sm screens when long contiguous chars
Browse files Browse the repository at this point in the history
  • Loading branch information
agilare committed May 14, 2023
1 parent 8ee3982 commit 9e9fd56
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions web/css/evenement-agenda.css
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ ul#calendrier_menu
line-height:1.4em;
font-size:0.9em;
min-height: 150px;
overflow: hidden;
}

.evenement .description a
Expand Down
5 changes: 3 additions & 2 deletions web/css/evenement.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ ul.menu_actions_evenement li
width:94%;
padding :0px;
margin:0.4em auto 1em auto;
background-color: #f4f4f4;
background-color: #f4f4f4;
overflow-x: hidden;
}

#evenement p
Expand Down Expand Up @@ -152,7 +153,7 @@ ul.menu_actions_evenement li
color: #3e5355;
background: #F9F9F9;
min-height:17em;
line-height:1.4em;
line-height:1.4em;
}

#desciption a
Expand Down
4 changes: 2 additions & 2 deletions web/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ border-bottom:1px solid black;

.evenement .description h2
{
font-size:1em;
font-weight:bold;
font-size:1em;
font-weight:bold;
}

.evenement .liens
Expand Down
5 changes: 5 additions & 0 deletions web/css/mobile.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
/* float:none;*/
}

#conteneur .colonne
{
max-width: 100%;
}

#menu ul li
{
float:left;
Expand Down

0 comments on commit 9e9fd56

Please sign in to comment.