Files
web/apps/scandic-web/components/TempDesignSystem/Breadcrumbs/Arrow/arrow.module.css
Anton Gunnarsson 08804e8675 Merged in chore/cleanup-scandic-web (pull request #2831)
chore: Cleanup scandic-web

* Remove unused files

* Remove unused and add missing packages

* Remove unused exports


Approved-by: Linus Flood
2025-09-18 15:33:00 +00:00

40 lines
653 B
CSS

.arrow > svg {
display: block;
}
[data-placement="left"] .arrow,
[data-placement="left top"] .arrow,
[data-placement="left bottom"] .arrow {
transform: rotate(270deg);
}
[data-placement="right"] .arrow,
[data-placement="right top"] .arrow,
[data-placement="right bottom"] .arrow {
transform: rotate(90deg);
}
[data-placement="bottom"] .arrow,
[data-placement="bottom left"] .arrow,
[data-placement="bottom right"] .arrow {
transform: rotate(180deg);
}
.small {
width: 14px;
height: 8px;
}
.medium {
width: 27px;
height: 13px;
}
.black {
fill: var(--Surface-UI-Fill-Intense);
}
.white {
fill: var(--Surface-UI-Fill-Default);
}