mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
687 B
35 lines
687 B
@import 'mixins';
|
|
@import 'vars';
|
|
|
|
.history {
|
|
&-transition {
|
|
font-size: 85%;
|
|
font-weight: normal;
|
|
margin-bottom: 1rem;
|
|
margin-top: 1rem;
|
|
position: relative;
|
|
|
|
&::before {
|
|
@include circle($history-dot-sm-size);
|
|
@include absolute(.5rem, null, null, -1.5rem);
|
|
background: $color-border;
|
|
content: '';
|
|
margin: 0;
|
|
margin-left: $history-dot-sm-offset-x;
|
|
}
|
|
}
|
|
}
|
|
|
|
:host {
|
|
&:first-child {
|
|
.history-transition {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
.history-transition {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|