bootstrap-rs/src/prelude/padding.rs

11 lines
236 B
Rust
Raw Normal View History

2020-06-21 15:57:50 +00:00
use crate::props::IntoBsClass;
2020-05-28 18:09:25 +00:00
#[derive(Debug, Clone, PartialEq)]
pub struct Padding(pub super::Edge, pub usize);
2020-06-21 15:57:50 +00:00
impl IntoBsClass for Padding {
2020-05-28 18:09:25 +00:00
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
}
}