aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_card_content/user_card_content.vue
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-03-05 13:25:31 -0500
committertaehoon <th.dev91@gmail.com>2019-03-05 13:25:31 -0500
commit43c52cb95054d3de43a3a7a5ab46836c84013d1b (patch)
tree73be702b75e4fe3a8503083811dbe0c8209200fa /src/components/user_card_content/user_card_content.vue
parente0a66b989d8f30f6475bc04064c8c36f9f876539 (diff)
Update modifier class notation
Diffstat (limited to 'src/components/user_card_content/user_card_content.vue')
-rw-r--r--src/components/user_card_content/user_card_content.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/user_card_content/user_card_content.vue b/src/components/user_card_content/user_card_content.vue
index f06a0a45..e003e850 100644
--- a/src/components/user_card_content/user_card_content.vue
+++ b/src/components/user_card_content/user_card_content.vue
@@ -164,19 +164,19 @@
//
// Modifiers
- &-rounded {
- border-radius: $fallback--panelRadius;
- border-radius: var(--panelRadius, $fallback--panelRadius);
+ &-rt {
+ 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);
}
- &-rounded-t {
+ &-r {
border-radius: $fallback--panelRadius;
border-radius: var(--panelRadius, $fallback--panelRadius);
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
}
- &-bordered {
+ &-b {
border-width: 1px;
border-style: solid;
border-color: $fallback--border;