diff options
| author | kPherox <admin@mail.kr-kp.com> | 2020-06-18 20:08:00 +0900 |
|---|---|---|
| committer | kPherox <admin@mail.kr-kp.com> | 2020-06-18 20:08:00 +0900 |
| commit | bb513dd9615759668ae216042a85ca0d8f087fa0 (patch) | |
| tree | e8c9d9ec7665343a41311dffd6348f2d0f7a2b94 /src | |
| parent | 632f62ee0f24fc87d29550b961b9e3b0230e3812 (diff) | |
change key-value to look like one
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index 445f0471..ccd7c794 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -157,6 +157,9 @@ display: flex; margin: 0.25em auto; max-width: 32em; + border: 1px solid var(--border, $fallback--border); + border-radius: $fallback--inputRadius; + border-radius: var(--inputRadius, $fallback--inputRadius); .user-profile-field-name { flex: 0 1 30%; @@ -164,6 +167,7 @@ text-align: right; color: var(--lightText); min-width: 120px; + border-right: 1px solid var(--border, $fallback--border); } .user-profile-field-value { @@ -179,12 +183,6 @@ overflow: hidden; padding: 0.5em 1.5em; box-sizing: border-box; - - border: var(--border, $fallback--border); - border-radius: $fallback--inputRadius; - border-radius: var(--inputRadius, $fallback--inputRadius); - border-style: solid; - border-width: 1px; } } } |
