File size: 587 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
.get-apps__app-badge {
display: flex;
max-width: 135px;
max-height: 40px;
margin-left: 0.5rem;
// Set overflow: hidden here instead of the parent node so that its focus outline is not cut-off.
> a {
overflow: hidden;
&:focus-visible {
box-shadow: 0 0 0 2px var(--color-primary);
}
}
&:first-child {
margin-left: 0;
}
// Crops the Android badge in order to remove the transparent space around it and generate a size-equivalent image
// to the iOS badge.
&.android-app-badge img {
transform: scale(1.13) translate(-7px, -5.1px);
transform-origin: left;
}
}
|