primevue-mirror/src/components/button/Button.css

25 lines
370 B
CSS
Raw Normal View History

2018-12-07 21:18:52 +00:00
.p-button {
2020-04-24 10:43:27 +00:00
display: inline-flex;
2018-12-07 21:18:52 +00:00
cursor: pointer;
margin-right: 0.25em;
user-select: none;
2020-04-24 10:43:27 +00:00
align-items: center;
2018-12-07 21:18:52 +00:00
}
.p-button:disabled {
cursor: default;
}
2020-04-24 10:43:27 +00:00
.p-button-icon-only {
justify-content: center;
2018-12-07 21:18:52 +00:00
}
.p-fluid .p-button {
2020-04-24 10:43:27 +00:00
display: flex;
2018-12-07 21:18:52 +00:00
width: 100%;
}
2020-04-24 10:43:27 +00:00
.p-fluid .p-button-icon-only {
display: inline-flex;
width: auto;
2018-12-07 21:18:52 +00:00
}