18 lines
290 B
CSS
18 lines
290 B
CSS
|
.p-checkbox {
|
||
|
display: inline-flex;
|
||
|
cursor: pointer;
|
||
|
user-select: none;
|
||
|
vertical-align: bottom;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.p-checkbox.p-checkbox-disabled {
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
.p-checkbox-box {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|