51 lines
852 B
Text
51 lines
852 B
Text
.settings__log {
|
|
margin: 1px;
|
|
|
|
&__country {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
&__entry {
|
|
display: flex;
|
|
border: 1px solid var(--accent-colour);
|
|
justify-content: space-between;
|
|
padding: 1px;
|
|
flex-wrap: wrap;
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: 1px;
|
|
}
|
|
}
|
|
|
|
&__column {
|
|
flex-grow: 1;
|
|
margin-left: 5px;
|
|
margin-right: 1px;
|
|
|
|
&--ip,
|
|
&--date {
|
|
flex-shrink: 0;
|
|
|
|
&:not(:last-child) {
|
|
flex-grow: 0;
|
|
}
|
|
}
|
|
|
|
&--action {
|
|
flex-shrink: 1;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
&--ip {
|
|
min-width: 200px;
|
|
}
|
|
|
|
&--date {
|
|
min-width: 120px;
|
|
}
|
|
|
|
&__name {
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
}
|