width: auto;
}
+.bg-pulse-grey {
+ animation: bg-pulse-grey 2s infinite linear;
+}
+
+@keyframes bg-pulse-grey {
+ 0% {
+ background-color: $gray-100;
+ }
+ 50% {
+ background-color: darken($gray-100, 5%);
+ }
+ 100% {
+ background-color: $gray-100;
+ }
+}
+
+@each $size, $length in $spacers {
+ .line-height-#{$size} {
+ line-height: $length !important; /* stylelint-disable-line declaration-no-important */
+ }
+}
+
+.dir-rtl {
+ .dir-rtl-hide {
+ display: none;
+ }
+}
+
+.dir-ltr {
+ .dir-ltr-hide {
+ display: none;
+ }
+}
\ No newline at end of file