// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Lesser General Public License
// that can be found in the LICENSE file.
/* Styles for StepLabel */
// Styles applied to the root element.
.ZuStepLabel-root {
}
// Styles applied to the root element if orientation="horizontal".
.ZuStepLabel-horizontal {
}
// Styles applied to the root element if orientation="vertical".
.ZuStepLabel-vertical {
}
// Styles applied to the label element that wraps `children`.
.ZuStepLabel-label {
}
// State class applied to the label element if active={true}.
.ZuStepLabel-active {
}
// State class applied to the label element if completed={true}.
.ZuStepLabel-completed {
}
// State class applied to the root and label elements if error={true}.
.ZuStepLabel-error {
}
// State class applied to the root and label elements if disabled={true}.
.ZuStepLabel-disabled {
}
// Styles applied to the `icon` container element.
.ZuStepLabel-iconContainer {
}
// State class applied to the root and icon container and label if alternativeLabel={true}.
.ZuStepLabel-alternativeLabel {
}
// Styles applied to the container element which wraps label and `optional`.
.ZuStepLabel-alternativeContainer {
}