add rtl-layout class to base component

This commit is contained in:
TechMiX
2020-12-09 01:57:18 +01:00
parent 260735665b
commit e0adc505db
5 changed files with 53 additions and 14 deletions

View File

@@ -450,3 +450,40 @@ th {
.crypto { color: #fa3d3d }
.locktime { color: #ff8c00 }
.reserved { color: #ff8c00 }
.rtl-layout {
.arrow {
@extend .arrow;
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
.table td {
text-align: right;
}
.table th {
text-align: right;
}
.title-block {
text-align: right;
}
.mr-3 {
@extend .ml-3;
margin-right: 0 !important;
}
.mr-1 {
@extend .ml-1;
}
.float-left {
float: right !important;
}
.float-right {
float: left !important;
}
}