Added button "support"

This commit is contained in:
2018-05-11 19:46:07 +10:00
parent 69cba6c008
commit 0c9c80f65d
5 changed files with 133 additions and 2 deletions

View File

@ -0,0 +1,22 @@
/*
* Text Align
* Basic Text Alignment, no importants but has high priority.
*
* Version:
* 1.0.0 - 2018/05/11
*/
.u-text-left {
text-align: left;
}
.u-text-center {
text-align: center;
}
.u-text-right {
text-align: right;
}
.u-text-justify {
text-align: justify;
}