2022-09-26 15:29:38 +02: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 10:04:14 +02:00
|
|
|
/*
|
|
|
|
* Compound icon
|
|
|
|
|
|
|
|
* {@link https://www.figma.com/file/X4XTH9iS2KGJ2wFKDqkyed}
|
|
|
|
*/
|
|
|
|
|
2022-09-26 15:29:38 +02:00
|
|
|
.mx_Icon {
|
2022-10-12 19:21:32 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 1px;
|
2022-09-26 15:29:38 +02:00
|
|
|
}
|
|
|
|
|
2022-11-22 07:58:37 +01:00
|
|
|
.mx_Icon_accent {
|
|
|
|
color: $accent;
|
|
|
|
}
|
|
|
|
|
2022-11-28 15:16:44 +01:00
|
|
|
.mx_Icon_alert {
|
|
|
|
color: $alert;
|
|
|
|
}
|
|
|
|
|
2022-11-18 08:36:20 +01:00
|
|
|
.mx_Icon_8 {
|
|
|
|
flex: 0 0 8px;
|
2022-11-22 07:58:37 +01:00
|
|
|
height: 8px;
|
2022-11-18 08:36:20 +01:00
|
|
|
width: 8px;
|
|
|
|
}
|
|
|
|
|
2022-09-26 15:29:38 +02:00
|
|
|
.mx_Icon_16 {
|
2022-11-15 10:02:40 +01:00
|
|
|
flex: 0 0 16px;
|
2022-11-22 07:58:37 +01:00
|
|
|
height: 16px;
|
2022-09-26 15:29:38 +02:00
|
|
|
width: 16px;
|
|
|
|
}
|
2022-11-21 08:47:09 +01:00
|
|
|
|
|
|
|
.mx_Icon_24 {
|
|
|
|
flex: 0 0 24px;
|
2022-11-22 07:58:37 +01:00
|
|
|
height: 24px;
|
2022-11-21 08:47:09 +01:00
|
|
|
width: 24px;
|
|
|
|
}
|
2022-11-22 07:58:37 +01:00
|
|
|
|
|
|
|
.mx_Icon_32 {
|
|
|
|
flex: 0 0 32px;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
}
|