How do i use more of the bottom bar ?
Currently i have
moon LARGE SPACE calendar LARGE SPACE current weather (Stacked on) weather forecast
I want to use that space to the right of calendar so i can arrange the screen better. I do not want to stack.
let config = {
    address: "0.0.0.0",
    port: 8080,
    basePath: "/",
    ipWhitelist: [],
    useHttps: false,
    httpsPrivateKey: "",
    httpsCertificate: "",
    language: "en",
    locale: "en-US",
    timeFormat: 12,
    units: "imperial",
    modules: [
        // Clock
        {
            module: "clock",
            position: "top_right",
            config: {
                timeFormat: 12,
                timezone: "America/New_York",
                displayType: "digital",
                displaySeconds: false,
                showWeek: false,
                showSunTimes: true,
                showMoonTimes: true,
                lat: ,
                lon: 
            }
        },
        // Ecobee indoor conditions
        {
            module: "MMM-Ecobee",
            position: "top_left",
            header: "Indoor Conditions",
            config: {
                updateInterval: 300000,
                showIndoorHumidity: true,
                showOutdoorWeather: false
            }
        },
        // Dynamic Weather (OpenWeather visual background)
        {
            module: "MMM-DynamicWeather",
            position: "fullscreen_above",
            config: {
                api_key: "", // required
                lat: ,
                lon: ,
                units: "imperial",
                weatherInterval: 600000,
                updateInterval: 600000,
                animationSpeed: 2000,
                effectDuration: 60000,
                effectDelay: 30000,
                fadeDuration: 3000,
                realisticClouds: true,
                sequential: "weather"
                // sunImage: "sun_center"
            }
        },
        // Calendar
        {
            module: "calendar",
            position: "bottom_center",
            header: "Holidays",
            config: {
                maximumNumberOfDays: 90,
                wrapEvents: false,
                fade: false,
                maximumEntries: 5,
                calendars: [
                    {
                        symbol: "calendar",
                        url: "https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics"
                    }
                ]
            }
        },
        // Moon Phase
        {
            module: "MMM-MoonPhase",
            position: "bottom_left",
            config: {
                hemisphere: "N",
                resolution: "detailed",
                updateInterval: 12 * 60 * 60 * 1000
            }
        },
        // Current outdoor conditions (WeatherFlow)
        {
            module: "weather",
            position: "bottom_right",
            header: "Outdoor Conditions -",
            config: {
                weatherProvider: "weatherflow",
                apiBase: "",
                token: "",
                stationid: "",
                type: "current",
                units: "imperial",
                tempUnits: "imperial",
                windUnits: "mph",
                degreeLabel: true,
                showPrecipitationProbability: true,
                showUVIndex: true,
                showWindDirection: true,
                showWindDirectionAsArrow: true,
                showHumidity: true,
                showSun: false,
                showLightning: true,
                showFeelsLike: true,
                showCloudCover: true,
                showPrecipitationAmount: true,
                updateInterval: 10 * 60 * 1000
            }
        },
        // Forecast (WeatherFlow)
        {
            module: "weather",
            position: "bottom_right",
            config: {
                weatherProvider: "weatherflow",
                apiBase: "",
                token: "",
                stationid: "",
                type: "forecast",
                units: "imperial",
                tableClass: "medium",
                colored: true,
                fade: false
            }
        }
    ]
};
if (typeof module !== "undefined") {
    module.exports = config;
}