mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
17 lines
252 B
CSS
17 lines
252 B
CSS
|
|
.checkboxes {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.checkboxes > label {
|
||
|
|
flex: 0 0 max-content;
|
||
|
|
margin: 0.5rem;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
section:not(:last-of-type) {
|
||
|
|
padding-bottom: 2rem;
|
||
|
|
border-bottom: 1px solid black;
|
||
|
|
}
|