mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 05:53:09 +03:00
Fix EditApplication layout for Safari (#766)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
parent
df4df7a60c
commit
0ebe8c9ed4
@ -50,18 +50,17 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if object !== undefined && candidate !== undefined}
|
{#if object !== undefined && candidate !== undefined}
|
||||||
<div class="grid-cards">
|
<div class="flex-between">
|
||||||
<CandidateCard {candidate} />
|
<div class="card"><CandidateCard {candidate} /></div>
|
||||||
<ExpandRightDouble />
|
<div class="arrows"><ExpandRightDouble /></div>
|
||||||
<VacancyCard {vacancy} />
|
<div class="card"><VacancyCard {vacancy} /></div>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.grid-cards {
|
.card {
|
||||||
display: grid;
|
align-self: stretch;
|
||||||
grid-template-columns: 1fr 4rem 1fr;
|
width: calc(50% - 3.5rem);
|
||||||
column-gap: 1.5rem;
|
|
||||||
align-items: center;
|
|
||||||
}
|
}
|
||||||
|
.arrows { width: 4rem; }
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user