1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-23 04:42:24 +03:00

Category item section title buttons centered

This commit is contained in:
Avele 2019-07-08 14:58:14 +04:00
parent 8c32b0fe74
commit ebbac54b28

View File

@ -1,11 +1,12 @@
<template>
<div class="category-item-section">
<h3 class="title font-weight-bold mb-1">
{{title}}
<h3 class="category-item-section__title title font-weight-bold mb-1">
{{ title }}
<category-item-btn
small
:title="editBtnTitle"
:icon="editBtnIcon"
class="ml-1"
@click="toggleEdit"
/>
</h3>
@ -82,4 +83,8 @@ export default class CategoryItemSection extends Vue {
.category-item-section:not(:last-child) {
margin-bottom: 15px;
}
.category-item-section__title {
display: flex;
align-items: center;
}
</style>