mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 13:47:13 +03:00
22 lines
484 B
Sass
22 lines
484 B
Sass
|
.root
|
||
|
display: flex
|
||
|
justify-content: flex-end
|
||
|
align-items: center
|
||
|
text-align: right
|
||
|
font: var(--font-size-sm)/var(--line-height-md) var(--font-primary)
|
||
|
|
||
|
.icon
|
||
|
$icon-size: 35px
|
||
|
width: $icon-size
|
||
|
height: $icon-size
|
||
|
background: var(--color-subtle-light)
|
||
|
color: var(--color-subtle-dark)
|
||
|
border-radius: 50%
|
||
|
padding: 0.5rem
|
||
|
transition: color 0.2s ease
|
||
|
float: right
|
||
|
margin-left: 3rem
|
||
|
|
||
|
&:hover
|
||
|
color: var(--color-theme)
|