From 4c54c3da964bf5b4e68c30545b66588f00ec275f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Ha=C3=9Fel?= Date: Fri, 18 Oct 2024 14:24:11 +0200 Subject: [PATCH] responsive steps: 0,1000,1500,2000 --- src/main/angular/src/widths.less | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/main/angular/src/widths.less b/src/main/angular/src/widths.less index 6d4462f..884245d 100644 --- a/src/main/angular/src/widths.less +++ b/src/main/angular/src/widths.less @@ -23,7 +23,23 @@ @media (min-width: 1000px) { .width100 { - width: 20em; + width: 33.33%; + } + +} + +@media (min-width: 1500px) { + + .width100 { + width: 25%; + } + +} + +@media (min-width: 2000px) { + + .width100 { + width: 20%; } }