Skip to main content

css_ast/types/
spread_shadow.rs

1#![allow(unused)]
2use super::prelude::*;
3
4use crate::Todo;
5
6/// <https://drafts.csswg.org/css-borders-4/#typedef-spread-shadow>
7///
8/// ```text,ignore
9/// <spread-shadow> = <'box-shadow-color'>? && [ <'box-shadow-offset'> [ <'box-shadow-blur'> <'box-shadow-spread'>? ]? ] && <'box-shadow-position'>?
10/// ```
11pub type SpreadShadow = Todo;
12
13#[cfg(test)]
14mod tests {
15	use super::*;
16	use crate::CssAtomSet;
17}