2022-09-26 21:29:38 +08:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-10-20 16:04:14 +08:00
|
|
|
/*
|
|
|
|
* Compound icon
|
|
|
|
|
|
|
|
* {@link https://www.figma.com/file/X4XTH9iS2KGJ2wFKDqkyed}
|
|
|
|
*/
|
|
|
|
|
2022-09-26 21:29:38 +08:00
|
|
|
.mx_Icon {
|
2022-10-13 01:21:32 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 1px;
|
2022-09-26 21:29:38 +08:00
|
|
|
}
|
|
|
|
|
2022-11-22 14:58:37 +08:00
|
|
|
.mx_Icon_accent {
|
|
|
|
color: $accent;
|
|
|
|
}
|
|
|
|
|
2022-11-28 22:16:44 +08:00
|
|
|
.mx_Icon_alert {
|
|
|
|
color: $alert;
|
|
|
|
}
|
|
|
|
|
2022-11-18 15:36:20 +08:00
|
|
|
.mx_Icon_8 {
|
|
|
|
flex: 0 0 8px;
|
2022-11-22 14:58:37 +08:00
|
|
|
height: 8px;
|
2022-11-18 15:36:20 +08:00
|
|
|
width: 8px;
|
|
|
|
}
|
|
|
|
|
2022-09-26 21:29:38 +08:00
|
|
|
.mx_Icon_16 {
|
2022-11-15 17:02:40 +08:00
|
|
|
flex: 0 0 16px;
|
2022-11-22 14:58:37 +08:00
|
|
|
height: 16px;
|
2022-09-26 21:29:38 +08:00
|
|
|
width: 16px;
|
|
|
|
}
|
2022-11-21 15:47:09 +08:00
|
|
|
|
|
|
|
.mx_Icon_24 {
|
|
|
|
flex: 0 0 24px;
|
2022-11-22 14:58:37 +08:00
|
|
|
height: 24px;
|
2022-11-21 15:47:09 +08:00
|
|
|
width: 24px;
|
|
|
|
}
|
2022-11-22 14:58:37 +08:00
|
|
|
|
|
|
|
.mx_Icon_32 {
|
|
|
|
flex: 0 0 32px;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
}
|