Improve styles
This commit is contained in:
parent
994c68903c
commit
a63caca49d
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@codex-storage/marketplace-ui-components",
|
"name": "@codex-storage/marketplace-ui-components",
|
||||||
"version": "0.0.34",
|
"version": "0.0.35",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@codex-storage/marketplace-ui-components",
|
"name": "@codex-storage/marketplace-ui-components",
|
||||||
"version": "0.0.34",
|
"version": "0.0.35",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lucide-react": "^0.453.0"
|
"lucide-react": "^0.453.0"
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/codex-storage/codex-marketplace-ui-components"
|
"url": "https://github.com/codex-storage/codex-marketplace-ui-components"
|
||||||
},
|
},
|
||||||
"version": "0.0.34",
|
"version": "0.0.35",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepack": "npm run build",
|
"prepack": "npm run build",
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
&.button--small {
|
&.button--small {
|
||||||
--codex-button-padding: 6px 10px;
|
--codex-button-padding: 6px 10px;
|
||||||
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
|
|
@ -47,7 +47,7 @@ export function Select({
|
||||||
}: Props) {
|
}: Props) {
|
||||||
return (
|
return (
|
||||||
<div className={"select " + className}>
|
<div className={"select " + className}>
|
||||||
<label htmlFor={id}>{label}</label>
|
{label && <label htmlFor={id}>{label}</label>}
|
||||||
<select
|
<select
|
||||||
id={id}
|
id={id}
|
||||||
onChange={onChange}
|
onChange={onChange}
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 1.25em 1.25em;
|
background-size: 1.25em 1.25em;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
height: 40px;
|
||||||
|
|
||||||
@media (min-width: 801px) {
|
@media (min-width: 801px) {
|
||||||
& {
|
& {
|
||||||
|
|
Loading…
Reference in New Issue