Created examples

This commit is contained in:
vinibiavatti
2019-09-06 00:07:44 -03:00
parent 2e1b284d12
commit 075b56fcc6
48 changed files with 2558 additions and 1378 deletions

58
src/styles/util.scss Normal file
View File

@@ -0,0 +1,58 @@
@import '../mixins.scss';
.tui-no-padding {
padding: 0px!important;
}
.left {
float: left!important;
}
.right {
float: right!important;
}
.center {
text-align: center;
}
.left-align {
text-align: left;
}
.right-align {
text-align: right;
}
.center-align {
text-align: center;
}
.full-width {
width: 100%!important;
}
.full-height {
height: 100%!important;
}
.inline {
display: inline!important;
}
.block {
display: block!important;
}
.fixed {
position: fixed!important;
}
.absolute {
position: absolute!important;
}
.relative {
position: relative!important;
}
.static {
position: static!important;
}
.tui-content {
padding: 12px;
}
.tui-disable-select {
@include disable-select;
}