23 lines
302 B
CSS
Raw Normal View History

2021-07-27 14:46:32 +02:00
/**
* @file
* Styling for the ds-2col template.
*/
.ds-2col > .group-left {
float: left; /* LTR */
width: 50%;
}
[dir="rtl"] .ds-2col > .group-left {
float: right;
}
.ds-2col > .group-right {
float: left; /* LTR */
width: 50%;
}
[dir="rtl"] .ds-2col > .group-right {
float: right;
}