I am having trouble applying styling to my SimpleCalendar in Rails, using the gem. When I render it, this is what I see:
https://i.sstatic.net/kJi7m.png
Here is the CSS provided by https://github.com/excid3/simple_calendar:
.simple-calendar {
table {
-webkit-border-horizontal-spacing: 0px;
-webkit-border-vertical-spacing: 0px;
background-color: rgba(0, 0, 0, 0);
border: 1px solid rgb(221, 221, 221);
border-collapse: collapse;
box-sizing: border-box;
max-width: 100%;
width: 100%;
}
// Other CSS classes...
}
The maintainer of the gem suggested that there may be issues with outdated bootstrap attributes causing the problem. However, upon reviewing the CSS, everything appears to be correct to me. As I am not well-versed in Bootstrap, I might be missing something. Can someone identify any discrepancies in the stylesheet that could be causing the problem?
Despite applying these attributes correctly, none of them seem to reflect in the rendered view. What could be causing this issue?