1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-01 11:55:21 +02:00
portainer/assets/less/utilities.less

31 lines
335 B
Text
Raw Normal View History

2013-06-08 15:12:14 -09:00
//
// Utility classes
// --------------------------------------------------
// Quick floats
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
.hide {
display: none;
}
.show {
display: block;
}
// Visibility
.invisible {
visibility: hidden;
}
// For Affix plugin
.affix {
position: fixed;
}