Skip to content

Commit

Permalink
feat(theme): améliore le rendu mobile du thème Rennes 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jboulen committed Sep 17, 2024
1 parent 1d074bf commit ba1be61
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion www/themes/rennes2/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,17 @@ body {
background-image: url("//static.univ-rennes2.fr/bootstrap/3.3/rennes2/logo-rennes2-128x128-noir.png");
background-position: left center;
background-repeat: no-repeat;
padding-left: 128px;
background-size: 64px;
min-height: 64px;
padding-left: 64px;
}

@media (min-width: 576px) {
.page-header .container-fluid {
background-size: 128px;
min-height: 128px;
padding-left: 128px;
}
}

html[data-bs-theme="auto"] .page-header .container-fluid {
Expand Down
2 changes: 1 addition & 1 deletion www/themes/rennes2/theme.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use Isou\Helpers\Script;
use Isou\Helpers\Style;

$theme_version = '4.0.1';
$theme_version = '4.0.2';

$STYLES[] = new Style('//static.univ-rennes2.fr/bootstrap/5.3/css/bootstrap.min.css');
$STYLES[] = new Style('//static.univ-rennes2.fr/bootstrap-icons/1.11/font/bootstrap-icons.min.css');
Expand Down

0 comments on commit ba1be61

Please sign in to comment.