bootstrap-rs/src/prelude/padding.rs

9 lines
214 B
Rust
Raw Normal View History

2020-05-28 18:09:25 +00:00
#[derive(Debug, Clone, PartialEq)]
pub struct Padding(pub super::Edge, pub usize);
impl super::BootstrapClass for Padding {
fn as_classname(&self) -> String {
2020-06-03 19:33:25 +00:00
format!("p{}-{}", self.0, self.1)
2020-05-28 18:09:25 +00:00
}
}