@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
40 lines • 875 B
CSS
/*
Your use of the content in the files referenced here is subject to the terms of the license at http://aka.ms/fabric-assets-license
*/
.dateTimePicker .container {
display: flex;
flex-direction: column;
}
.dateTimePicker .container .hidden {
display: none;
}
.dateTimePicker .container .row {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.dateTimePicker .container .row.timeRow {
margin-top: 3px;
}
.dateTimePicker .container .row .picker {
flex-grow: 1;
flex-basis: 0%;
}
.dateTimePicker .container .row .time {
flex-grow: 1;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.dateTimePicker .labelCell {
vertical-align: top;
min-width: 55px;
}
.dateTimePicker .separator {
vertical-align: top;
padding-left: 5px;
padding-right: 5px;
}
.dateTimePicker .fieldLabel {
margin-right: 10px;
}