I'm trying to use SmartClient components in a Twitter Bootstrap website but i'm having some problems since Twitter Bootstrap defines things like:
Which seems to affect SmartClient components layout. Did anyone else had success with Bootstrap/SmartClient integration? How did you fixed the layout issues caused by Bootstrap?
Thanks.
Code:
table {
border-spacing: 0;
border-collapse: collapse;
}
td,
th {
padding: 0;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Thanks.
Comment