mat-ale commented on a change in pull request #241:
URL: https://github.com/apache/syncope/pull/241#discussion_r566236747
##########
File path:
client/idrepo/common-ui/src/main/resources/META-INF/resources/ui-commons/css/search.scss
##########
@@ -36,25 +35,44 @@
float: left;
padding: 0 3px 0px 0px;
display: inline-block !important;
+ .form-check{
+ margin-bottom: -50px;
+ }
+ .toggle.btn-xs {
Review comment:
as an improvement, for this kind of rules the related `.scss` style is:
```scss
.toggle {
&.btn-xs {/*...*/}
}
```
and for this specific case I would do:
```scss
.toggle {
&.btn {/*...*/}
}
```
instead, in order to avoid overriding a rule related to the default css grid
classes (`xs`, `md` etc...).
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]