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.
32 lines
453 B
32 lines
453 B
.motion {
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.item {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0 16px;
|
|
overflow: hidden;
|
|
line-height: 31px;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
background: rgba(255, 0, 0, 0.1);
|
|
}
|
|
|
|
&::after {
|
|
content: '';
|
|
border-bottom: 1px solid gray;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
button {
|
|
vertical-align: text-top;
|
|
margin-right: 8px;
|
|
}
|
|
}
|