1
1
mirror of https://github.com/primer/css.git synced 2024-11-28 22:01:43 +03:00

replace border radius values with variable

This commit is contained in:
Emily 2018-05-09 14:28:29 -07:00
parent adf36d2e9c
commit 731d9b90ff

View File

@ -23,13 +23,13 @@
&:first-child {
margin-left: 0;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
border-top-left-radius: $border-radius;
border-bottom-left-radius: $border-radius;
}
&:last-child {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border-top-right-radius: $border-radius;
border-bottom-right-radius: $border-radius;
}
// Bring any button into forefront for proper borders given negative margin below