Merged in fix/sw-3695-iconfixes (pull request #3462)
fix(SW-3695): icon fixes * fix(SW-3695): icon fixes Approved-by: Anton Gunnarsson
This commit is contained in:
@@ -29,7 +29,7 @@
|
|||||||
.link {
|
.link {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: var(--Space-x05);
|
gap: var(--Space-x05);
|
||||||
align-items: baseline;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bookingCodeFilter {
|
.bookingCodeFilter {
|
||||||
|
|||||||
@@ -11,7 +11,11 @@ export default function RoomNotAvailable() {
|
|||||||
return (
|
return (
|
||||||
<div className={styles.noRoomsContainer}>
|
<div className={styles.noRoomsContainer}>
|
||||||
<div className={styles.noRooms}>
|
<div className={styles.noRooms}>
|
||||||
<MaterialIcon icon="dangerous" color="Icon/Feedback/Error" size={16} />
|
<MaterialIcon
|
||||||
|
icon="error_circle_rounded"
|
||||||
|
color="Icon/Feedback/Error"
|
||||||
|
size={16}
|
||||||
|
/>
|
||||||
<Typography variant="Body/Paragraph/mdRegular">
|
<Typography variant="Body/Paragraph/mdRegular">
|
||||||
<p>
|
<p>
|
||||||
{intl.formatMessage({
|
{intl.formatMessage({
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
&[data-open] {
|
&[data-open] {
|
||||||
.chevron {
|
.chevron {
|
||||||
rotate: -90deg;
|
transform: rotate(-90deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -122,7 +122,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.chevron {
|
.chevron {
|
||||||
rotate: 90deg;
|
display: inline-flex;
|
||||||
|
transform: rotate(90deg);
|
||||||
|
transition: transform 150ms ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.popover {
|
.popover {
|
||||||
|
|||||||
@@ -90,6 +90,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.chevron {
|
||||||
|
transition: transform 150ms ease;
|
||||||
|
}
|
||||||
|
|
||||||
.select[aria-expanded="true"] .chevron {
|
.select[aria-expanded="true"] .chevron {
|
||||||
transform: rotate(180deg);
|
transform: rotate(180deg);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
}
|
}
|
||||||
&[data-open] {
|
&[data-open] {
|
||||||
.chevron {
|
.chevron {
|
||||||
rotate: -90deg;
|
transform: rotate(-90deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.selectedText {
|
.selectedText {
|
||||||
@@ -53,7 +53,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.chevron {
|
.chevron {
|
||||||
rotate: 90deg;
|
display: inline-flex;
|
||||||
|
transform: rotate(90deg);
|
||||||
|
transition: transform 150ms ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inner {
|
.inner {
|
||||||
|
|||||||
Reference in New Issue
Block a user