diff options
| author | Henry Jameson <me@hjkos.com> | 2024-02-13 02:27:53 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-02-13 02:27:53 +0200 |
| commit | c16f1d4e35f2d885d2aa4e5f1ee51af9e95c6bdc (patch) | |
| tree | d45a4f69a839e4c04ffbb17c411dec6c3605ce42 /src/components/user_profile | |
| parent | bcc50844096b47c0656ed3338de222055a749fb1 (diff) | |
more fixes
Diffstat (limited to 'src/components/user_profile')
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index c63a303c..46aef990 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -181,9 +181,8 @@ .user-profile-field { display: flex; margin: 0.25em; - border: 1px solid var(--border, $fallback--border); - border-radius: $fallback--inputRadius; - border-radius: var(--inputRadius, $fallback--inputRadius); + border: 1px solid var(--border); + border-radius: var(--roundness); .user-profile-field-name { flex: 0 1 30%; @@ -191,7 +190,7 @@ text-align: right; color: var(--lightText); min-width: 120px; - border-right: 1px solid var(--border, $fallback--border); + border-right: 1px solid var(--border); } .user-profile-field-value { |
