66 lines
1.6 KiB
CSS
66 lines
1.6 KiB
CSS
/*
|
|
Copyright 2019 Adobe. All rights reserved.
|
|
This file is licensed to you 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 REPRESENTATIONS
|
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
governing permissions and limitations under the License.
|
|
*/
|
|
|
|
.spectrum-Icon {
|
|
--spectrum-icon-size-s: var(--spectrum-alias-workflow-icon-size-s);
|
|
--spectrum-icon-size-m: var(--spectrum-alias-workflow-icon-size-m);
|
|
--spectrum-icon-size-l: var(--spectrum-alias-workflow-icon-size-l);
|
|
--spectrum-icon-size-xl: var(--spectrum-alias-workflow-icon-size-xl);
|
|
--spectrum-icon-size-xxl: var(--spectrum-global-dimension-size-400);
|
|
}
|
|
|
|
.spectrum-Icon--sizeS {
|
|
&,
|
|
img,
|
|
svg {
|
|
block-size: var(--spectrum-icon-size-s);
|
|
inline-size: var(--spectrum-icon-size-s);
|
|
}
|
|
}
|
|
|
|
.spectrum-Icon--sizeM {
|
|
&,
|
|
img,
|
|
svg {
|
|
block-size: var(--spectrum-icon-size-m);
|
|
inline-size: var(--spectrum-icon-size-m);
|
|
}
|
|
}
|
|
|
|
.spectrum-Icon--sizeL {
|
|
&,
|
|
img,
|
|
svg {
|
|
block-size: var(--spectrum-icon-size-l);
|
|
inline-size: var(--spectrum-icon-size-l);
|
|
}
|
|
}
|
|
|
|
.spectrum-Icon--sizeXL {
|
|
&,
|
|
img,
|
|
svg {
|
|
block-size: var(--spectrum-icon-size-xl);
|
|
inline-size: var(--spectrum-icon-size-xl);
|
|
}
|
|
}
|
|
|
|
|
|
.spectrum-Icon--sizeXXL {
|
|
&,
|
|
img,
|
|
svg {
|
|
block-size: var(--spectrum-icon-size-xxl);
|
|
inline-size: var(--spectrum-icon-size-xxl);
|
|
}
|
|
}
|