mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
39 lines
835 B
JavaScript
39 lines
835 B
JavaScript
|
|
import Styles from '../../../../styles';
|
||
|
|
|
||
|
|
const { color, font } = Styles;
|
||
|
|
|
||
|
|
export default {
|
||
|
|
saveQuerySection: {
|
||
|
|
alignItems: 'flex-end',
|
||
|
|
display: 'flex',
|
||
|
|
justifyContent: 'space-between',
|
||
|
|
},
|
||
|
|
saveTextWrapper: {
|
||
|
|
display: 'inline-block',
|
||
|
|
width: '440px',
|
||
|
|
'@media (max-width: 911px)': {
|
||
|
|
width: '400px',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
saveWrapper: {
|
||
|
|
alignItems: 'center',
|
||
|
|
display: 'flex',
|
||
|
|
},
|
||
|
|
sliderTextDontSave: (saveQuery) => {
|
||
|
|
return {
|
||
|
|
color: saveQuery ? color.textDark : color.textUltradark,
|
||
|
|
textTransform: 'uppercase',
|
||
|
|
fontSize: font.small,
|
||
|
|
marginRight: '5px',
|
||
|
|
};
|
||
|
|
},
|
||
|
|
sliderTextSave: (saveQuery) => {
|
||
|
|
return {
|
||
|
|
color: saveQuery ? color.brand : color.textMedium,
|
||
|
|
textTransform: 'uppercase',
|
||
|
|
fontSize: font.small,
|
||
|
|
marginLeft: '5px',
|
||
|
|
};
|
||
|
|
},
|
||
|
|
};
|