summaryrefslogtreecommitdiff
path: root/src/client/components/ui
diff options
context:
space:
mode:
authorfuyu <54523771+mfmfuyu@users.noreply.github.com>2020-02-09 19:59:28 +0900
committerGitHub <noreply@github.com>2020-02-09 19:59:28 +0900
commit7abd91f031d5a4ee7f3b7f9fdb4a851b56f98f02 (patch)
tree6200c2f9ca5881d031a33bcc4f61c81abd0337b5 /src/client/components/ui
parent:art: (diff)
downloadsharkey-7abd91f031d5a4ee7f3b7f9fdb4a851b56f98f02.tar.gz
sharkey-7abd91f031d5a4ee7f3b7f9fdb4a851b56f98f02.tar.bz2
sharkey-7abd91f031d5a4ee7f3b7f9fdb4a851b56f98f02.zip
いくつかのスタイルを調整 (#5894)
* Chrome(Android)で誕生日欄が崩れていたのを修正 * 入力欄のフォントを親要素から継承するように変更
Diffstat (limited to 'src/client/components/ui')
-rw-r--r--src/client/components/ui/input.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/components/ui/input.vue b/src/client/components/ui/input.vue
index 69d842ef0f..cd295b68d8 100644
--- a/src/client/components/ui/input.vue
+++ b/src/client/components/ui/input.vue
@@ -254,7 +254,7 @@ export default Vue.extend({
> .input {
position: relative;
-
+
&:before {
content: '';
display: block;
@@ -327,14 +327,16 @@ export default Vue.extend({
}
> input {
+ $height: 32px;
display: block;
+ height: $height;
width: 100%;
margin: 0;
padding: 0;
font: inherit;
font-weight: normal;
font-size: 16px;
- line-height: 32px;
+ line-height: $height;
color: var(--inputText);
background: transparent;
border: none;