2019-02-06 10:24:29 +00:00
|
|
|
@import "variables";
|
2018-05-14 10:54:17 +00:00
|
|
|
|
2018-04-18 07:47:05 +00:00
|
|
|
vn-step-control {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.step-control {
|
2019-02-08 16:49:51 +00:00
|
|
|
border-top: 2px solid $color-main;
|
2018-04-18 07:47:05 +00:00
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
& > .steps {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row
|
|
|
|
}
|
|
|
|
& > .steps > .step {
|
|
|
|
justify-content: center;
|
|
|
|
min-width: 125px;
|
|
|
|
display: flex;
|
|
|
|
flex: auto
|
|
|
|
}
|
|
|
|
& > .steps > .step .circle {
|
2019-02-08 16:49:51 +00:00
|
|
|
border: 2px solid $color-main;
|
2018-05-14 10:54:17 +00:00
|
|
|
background-color: white;
|
2018-04-18 07:47:05 +00:00
|
|
|
align-content: center;
|
2020-04-02 09:39:39 +00:00
|
|
|
margin-top: -10px;
|
2018-04-18 07:47:05 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
cursor: pointer;
|
|
|
|
height: 15px;
|
2020-04-02 09:39:39 +00:00
|
|
|
width: 15px;
|
2018-04-18 07:47:05 +00:00
|
|
|
}
|
|
|
|
& > .steps > .step .circle.active {
|
2019-02-08 16:49:51 +00:00
|
|
|
background-color: $color-main;
|
2018-04-18 07:47:05 +00:00
|
|
|
}
|
|
|
|
& > .buttons {
|
|
|
|
display: flex;
|
|
|
|
flex: auto;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2020-04-02 09:39:39 +00:00
|
|
|
margin-top: 10px;
|
2018-04-18 07:47:05 +00:00
|
|
|
}
|
|
|
|
& > .buttons > .step {
|
|
|
|
display: flex
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|