Projet

Général

Profil

0001-scss-make-sure-sidebar-doesn-t-grow-over-its-size-26.patch

Frédéric Péters, 17 septembre 2018 23:07

Télécharger (770 octets)

Voir les différences:

Subject: [PATCH] scss: make sure sidebar doesn't grow over its size (#26493)

 static/includes/_layout.scss | 1 +
 1 file changed, 1 insertion(+)
static/includes/_layout.scss
97 97
		-ms-flex: 0 0 $sidebar-width;
98 98
		-webkit-flex: 0 0 $sidebar-width;
99 99
		flex: 0 0 $sidebar-width;
100
		max-width: $sidebar-width;
100 101
		@if $sidebar-position == right {
101 102
			-ms-flex-order: 1;
102 103
			-webkit-order: 1;
103
-