Projet

Général

Profil

0001-scss-use-percent-for-custom-radio-border-radius-5818.patch

Frédéric Péters, 25 octobre 2021 19:09

Télécharger (817 octets)

Voir les différences:

Subject: [PATCH] scss: use percent for custom radio border radius (#58180)

 static/includes/_forms.scss | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
static/includes/_forms.scss
115 115
%custom-radio-widget {
116 116
	input + span {
117 117
		&::before {
118
			border-radius: 16px;
118
			border-radius: 100%;
119 119
		}
120 120
		&::after {
121
			border-radius: 5px;
121
			border-radius: 100%;
122 122
		}
123 123
	}
124 124
}
125
-