platform/plugins/recruit-resources/src/components/KanbanPanelEmpty.svelte
Alexander Platov afdf55e0e7
Convert PX to REM (#28)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2021-08-17 16:46:06 +02:00

77 lines
1.9 KiB
Svelte

<!--
// Copyright © 2020, 2021 Anticrm Platform Contributors.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
-->
<script lang="ts">
import type { IntlString } from '@anticrm/platform'
import { Label } from '@anticrm/ui'
import { IconAdd } from '@anticrm/ui'
export let label: IntlString
</script>
<div class="panel-container">
<div class="circle">
<div class="icon">
<IconAdd size={'large'} />
</div>
</div>
<Label {label} />
</div>
<style lang="scss">
.panel-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 320px;
height: 100%;
padding: 12px;
font-size: 14px;
line-height: 18px;
color: var(--theme-caption-color);
background-color: var(--theme-button-bg-enabled);
border: 1px dotted var(--theme-bg-accent-color);
border-radius: .75rem;
cursor: pointer;
.circle {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
width: 80px;
height: 80px;
background-color: var(--theme-bg-accent-color);
border-radius: 50%;
.icon {
width: 24px;
height: 24px;
opacity: .6;
}
}
&:hover {
background-color: var(--theme-bg-accent-hover);
box-shadow: 0px 12px 40px rgba(0, 0, 0, .15);
.circle .icon {
opacity: 1;
}
}
}
</style>