This commit is contained in:
cha0s 2020-06-27 07:15:17 -05:00
parent 7ec9c71a77
commit 0b3fd67813
4 changed files with 5 additions and 18 deletions

View File

@ -189,7 +189,11 @@ select {
align-items: center; align-items: center;
display: flex; display: flex;
height: 100%; height: 100%;
padding: 0 0.5em;
justify-content: space-evenly; justify-content: space-evenly;
.text {
padding: 0 0.5em;
}
} }
.icon { .icon {
padding: 0.75em; padding: 0.75em;

View File

@ -2,16 +2,3 @@
height: 100%; height: 100%;
width: 100%; width: 100%;
} }
.react-tabs__tab .wrapper {
padding: 0 0.5em;
}
.react-tabs__tab .wrapper .text {
padding: 0 0.5em;
}
// :scope > .react-tabs > .react-tabs__tab-list {
// margin-left: 4em;
// width: calc(100% - 3em);
// }

View File

@ -6,7 +6,7 @@ const TraitTab = (props) => {
return ( return (
<span className="wrapper"> <span className="wrapper">
<span className="icon" /> <span className="icon" />
{type} <span className="text">{type}</span>
<span className="close"></span> <span className="close"></span>
</span> </span>
); );

View File

@ -18,10 +18,6 @@ form {
margin: 1em; margin: 1em;
} }
.text {
margin-right: 0.5em;
}
.unrenderable { .unrenderable {
font-size: 2em; font-size: 2em;
} }