@eturnity/eturnity_reusable_components 1.2.67 → 1.2.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -71,9 +71,7 @@
|
|
71
71
|
import styled from "vue-styled-components"
|
72
72
|
import InfoText from "../../infoText"
|
73
73
|
import theme from "../../../assets/theme"
|
74
|
-
const Container = styled.div
|
75
|
-
display: inline-block;
|
76
|
-
`
|
74
|
+
const Container = styled.div``
|
77
75
|
|
78
76
|
const flexAttrs = { label:String,size: String, disabled: Boolean,alignItems: String }
|
79
77
|
const FlexWrapper = styled("div", flexAttrs)`
|
@@ -117,12 +115,14 @@ import styled from "vue-styled-components"
|
|
117
115
|
border:1px solid ${props=>props.isActive?props.secondaryColor:props.inactiveColor};
|
118
116
|
display:flex;
|
119
117
|
align-items:center;
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
118
|
+
justify-content: center;
|
119
|
+
flex-grow:1;
|
120
|
+
font-size: 13px;
|
121
|
+
line-height: 1;
|
122
|
+
text-align: center;
|
123
|
+
padding: 10px;
|
124
|
+
margin-right: -1px;
|
125
|
+
transition: all 0.1s ease-in-out;
|
126
126
|
overflow:hidden;
|
127
127
|
& :hover{
|
128
128
|
cursor: pointer;
|