fix: довести fix42 до production (cleanups, journald limits, docs)

This commit is contained in:
2026-05-21 15:31:11 +05:00
parent 782520848d
commit e1ecaf485f
22 changed files with 59 additions and 58 deletions
@@ -1,20 +1,16 @@
<template>
<div
@click="toggleClick"
class="px-[15px] hover:bg-gray-50 cursor-pointer h-[50px] leading-[50px] dark:hover:bg-[var(--el-fill-color-light)]"
>
<button type="button" class="hamburger-button" @click="toggleClick">
<svg
:class="{ 'is-active': isActive }"
class="hamburger"
viewBox="0 0 1024 1024"
xmlns="http://www.w3.org/2000/svg"
style="color: #fff !important"
>
<path
d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519a8.84 8.84 0 0 0 0-13.9L142.4 381.9c-5.8-4.6-14.4-.5-14.4 6.9v246.3a8.9 8.9 0 0 0 14.4 7z"
/>
</svg>
</div>
</button>
</template>
<script setup lang="ts">
@@ -34,10 +30,28 @@ function toggleClick() {
</script>
<style lang="scss" scoped>
.hamburger-button {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
padding: 0;
color: #303133;
cursor: pointer;
background: transparent;
border: 0;
&:hover {
background: rgb(249 250 251);
}
}
.hamburger {
width: 20px;
height: 20px;
vertical-align: -4px;
fill: currentcolor;
transition: transform 0.2s;
&.is-active {
transform: rotate(180deg);