aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_card/user_card.vue
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-03-05 21:52:04 -0500
committertaehoon <th.dev91@gmail.com>2019-03-05 21:52:04 -0500
commit5f51fe897dcd7d32c46a67a8d31c8b4ffc8858b2 (patch)
treee281f58c95b9e4705d5e36d29ebf89ecdef885c5 /src/components/user_card/user_card.vue
parent37acb51df416a2475f467c0402a5e18821c5934d (diff)
Revert modifier class notation
Diffstat (limited to 'src/components/user_card/user_card.vue')
-rw-r--r--src/components/user_card/user_card.vue7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue
index b90f57a1..cc2ce6b8 100644
--- a/src/components/user_card/user_card.vue
+++ b/src/components/user_card/user_card.vue
@@ -161,22 +161,21 @@
text-align: center;
}
- //
// Modifiers
- &-rt {
+ &-rounded-t {
border-top-left-radius: $fallback--panelRadius;
border-top-left-radius: var(--panelRadius, $fallback--panelRadius);
border-top-right-radius: $fallback--panelRadius;
border-top-right-radius: var(--panelRadius, $fallback--panelRadius);
}
- &-r {
+ &-rounded {
border-radius: $fallback--panelRadius;
border-radius: var(--panelRadius, $fallback--panelRadius);
}
- &-b {
+ &-bordered {
border-width: 1px;
border-style: solid;
border-color: $fallback--border;