New style (#87)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov 2021-08-30 13:40:31 +03:00 committed by GitHub
parent d7e02d99e9
commit da9a0f2e84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 7 deletions

View File

@ -60,7 +60,7 @@
.dialog {
display: flex;
flex-direction: column;
width: 42.5rem;
width: 45rem;
min-height: 100vh;
max-height: 100vh;
background-color: var(--theme-bg-color);
@ -91,7 +91,7 @@
.content {
flex-shrink: 0;
flex-grow: 1;
margin: 0 2.5rem;
// margin: 0 2.5rem;
height: fit-content;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

View File

@ -113,10 +113,10 @@
.header {
position: relative;
padding: 1.5rem 1.5rem 0;
width: 37.5rem;
min-height: 15rem;
height: 15rem;
background-image: url(../../img/header-green.png);
width: 45rem;
min-height: 12.5rem;
height: 12.5rem;
background-image: url(../../img/header-pink.png);
background-repeat: no-repeat;
background-clip: border-box;
background-size: cover;

View File

@ -82,6 +82,13 @@
okAction={save}
on:close={() => { dispatch('close') }}>
<DialogHeader {space} {object} {newValue} {resumeId} {resumeName} {resumeUuid} {resumeSize} {resumeType}/>
<Tabs model={tabModel}/>
<div class="tabs-container">
<Tabs model={tabModel}/>
</div>
</Dialog>
<style lang="scss">
.tabs-container {
margin: 0 2.5rem;
}
</style>