You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
456 B
20 lines
456 B
#[derive(Clone, PartialEq)] |
|
pub enum Border { |
|
All, |
|
Top, |
|
Right, |
|
Bottom, |
|
Left, |
|
} |
|
|
|
impl super::BootstrapClass for Border { |
|
fn as_classname(&self) -> String { |
|
match self { |
|
Self::All => "border".into(), |
|
Self::Top => "border-top".into(), |
|
Self::Right => "border-right".into(), |
|
Self::Bottom => "border-bottom".into(), |
|
Self::Left => "border-left".into(), |
|
} |
|
} |
|
}
|
|
|