Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Lets Learn SASS together. Re: Lets Learn SASS together.

#132864
Marynka
Member

-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;

@mixin rounded_symmetrical($vert, $radius: 10px) {
border-#{$vert}-left-radius: $radius;
border-#{$vert}-right-radius: $radius;
-moz-border-radius-#{$vert}left: $radius;
-moz-border-radius-#{$vert}right: $radius;
-webkit-border-#{$vert}-left-radius: $radius;
-webkit-border-#{$vert}-right-radius: $radius;
}

.user-settings { @include rounded_symmetrical(bottom, 5px); }