Increase sidebar to 360px
This commit is contained in:
parent
91dfc59383
commit
32cccf0009
|
@ -45,7 +45,7 @@ export default {
|
||||||
|
|
||||||
.timeline-wrapper-with-side-bar {
|
.timeline-wrapper-with-side-bar {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: -webkit-calc(100% - 320px);
|
width: calc(100% - 360px);
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
transition: all 0.5s;
|
transition: all 0.5s;
|
||||||
scroll-behavior: auto;
|
scroll-behavior: auto;
|
||||||
|
|
|
@ -241,7 +241,7 @@ export default {
|
||||||
.upper-with-side-bar {
|
.upper-with-side-bar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
right: -webkit-calc(20px + 320px);
|
right: calc(20px + 360px);
|
||||||
transition: all 0.5s;
|
transition: all 0.5s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -192,6 +192,6 @@ export default {
|
||||||
.upper-with-side-bar {
|
.upper-with-side-bar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
right: -webkit-calc(20px + 320px);
|
right: calc(20px + 360px);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -249,7 +249,7 @@ export default {
|
||||||
.upper-with-side-bar {
|
.upper-with-side-bar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
right: -webkit-calc(20px + 320px);
|
right: calc(20px + 360px);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<style src="@/assets/timeline-transition.scss"></style>
|
<style src="@/assets/timeline-transition.scss"></style>
|
||||||
|
|
|
@ -210,7 +210,7 @@ export default {
|
||||||
.upper-with-side-bar {
|
.upper-with-side-bar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
right: -webkit-calc(20px + 320px);
|
right: calc(20px + 360px);
|
||||||
transition: all 0.5s;
|
transition: all 0.5s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -248,7 +248,7 @@ export default {
|
||||||
.upper-with-side-bar {
|
.upper-with-side-bar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
right: -webkit-calc(20px + 320px);
|
right: calc(20px + 360px);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<style src="@/assets/timeline-transition.scss"></style>
|
<style src="@/assets/timeline-transition.scss"></style>
|
||||||
|
|
|
@ -239,7 +239,7 @@ export default {
|
||||||
.upper-with-side-bar {
|
.upper-with-side-bar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
right: -webkit-calc(20px + 320px);
|
right: calc(20px + 360px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -204,7 +204,7 @@ export default {
|
||||||
.upper-with-side-bar {
|
.upper-with-side-bar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
right: -webkit-calc(20px + 320px);
|
right: calc(20px + 360px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -239,7 +239,7 @@ export default {
|
||||||
.upper-with-side-bar {
|
.upper-with-side-bar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
right: -webkit-calc(20px + 320px);
|
right: calc(20px + 360px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -79,7 +79,7 @@ export default {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 48px;
|
top: 48px;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 320px;
|
width: 360px;
|
||||||
height: calc(100% - 48px);
|
height: calc(100% - 48px);
|
||||||
border-left: solid 1px var(--theme-border-color);
|
border-left: solid 1px var(--theme-border-color);
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@ export default {
|
||||||
transition: all 0.5s;
|
transition: all 0.5s;
|
||||||
}
|
}
|
||||||
.slide-detail-enter, .slide-detail-leave-to {
|
.slide-detail-enter, .slide-detail-leave-to {
|
||||||
margin-right: -320px;
|
margin-right: -360px;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue