Web components for the Yew framework that support Bootstrap for styling.
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.
|
#[derive(Debug, Clone, PartialEq)] |
|
pub struct Padding(pub super::Edge, pub usize); |
|
|
|
impl super::BootstrapClass for Padding { |
|
fn as_classname(&self) -> String { |
|
format!("p{}-{}", self.0, self.1) |
|
} |
|
}
|
|
|