|
|
@ -143,7 +143,6 @@ export default { |
|
|
|
</script> |
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
@use 'sass:math'; |
|
|
|
$icon-size: 44px; |
|
|
|
|
|
|
|
.conversation-icon { |
|
|
@ -155,7 +154,7 @@ $icon-size: 44px; |
|
|
|
width: $icon-size; |
|
|
|
height: $icon-size; |
|
|
|
line-height: $icon-size; |
|
|
|
font-size: math.div($icon-size, 2); |
|
|
|
font-size: calc($icon-size / 2); |
|
|
|
background-color: var(--color-background-darker); |
|
|
|
|
|
|
|
&.icon-changelog { |
|
|
@ -167,7 +166,7 @@ $icon-size: 44px; |
|
|
|
&.icon-password, |
|
|
|
&.icon-file, |
|
|
|
&.icon-mail { |
|
|
|
background-size: math.div($icon-size, 2); |
|
|
|
background-size: calc($icon-size / 2); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|