Convert SegmentedControl component to Sass

This commit is contained in:
Justin Edmund 2020-10-25 22:21:53 -07:00
parent 234162bf31
commit 7e6547dfa1
2 changed files with 3 additions and 3 deletions

View file

@ -1,12 +1,12 @@
.SegmentedControlWrapper {
display: flex;
justify-content: center;
margin-bottom: 24px;
margin-bottom: $unit * 3;
}
.SegmentedControl {
background: white;
border-radius: 8px;
border-radius: $unit;
display: inline-flex;
position: relative;
user-select: none;

View file

@ -1,6 +1,6 @@
import React from 'react'
import './index.css'
import './index.scss'
interface Props {}