antos-frontend/src/themes/system/afx-nspinner.css
DanyLE 31b5000fa3 Rework on AntOS core to provide support to both mobile and desktop devices (experimental):
- Redesign the core UI API and tags to support Mobile devices
- Add new StackMenu tag
- Support touch events handling on touch devices
- Redesign File and Setting to work on mobile
- Improve Anouncement API
- Rework on default themes
2024-03-10 10:23:50 +01:00

41 lines
721 B
CSS

afx-nspinner{
display: flex;
flex-direction: row;
}
afx-nspinner ul{
padding:0;
margin: 0;
list-style: none;
display: flex;
flex-direction: column;
width: 40px;
}
afx-nspinner input{
margin: 0;
height: 100%;
width: calc(100% - 40px);
flex: 1;
}
afx-nspinner ul li{
display: flex;
padding:0;
margin: 0;
flex: 1;
width: 100%;
align-items: center;
justify-content: center;
}
afx-nspinner ul li.incr i:before{
content: "\f0d8";
font-family: "FontAwesome";
font-style: normal;
font-size: 20px;
}
afx-nspinner ul li.decr i:before{
content: "\f0d7";
font-family: "FontAwesome";
font-style: normal;
font-size: 20px;
}