jclarke0000 / MMM-OpenWeatherForecast

Magic Mirror weather module using OpenWeather API
44 stars 26 forks source link

Trying to get forecasted wind conditions with gusts on a single line #30

Closed Milkysunshine closed 5 months ago

Milkysunshine commented 5 months ago

Any suggestions how I can do this? Right now, gusts stack below the other wind info. I'd like everything on a single line if possible.

Milkysunshine commented 5 months ago

I figured it out. Put this in your custom.css:

.MMM-OpenWeatherForecast .wrapper.table .forecast-container .forecast-item .wind-speed,
.MMM-OpenWeatherForecast .wrapper.table .forecast-container .forecast-item .wind-gusts,
.MMM-OpenWeatherForecast .wrapper.table .forecast-container .forecast-item .accumulation {
    margin: 0px;
    display: inline-block;
}