clustvirt/view/components/util.go
Matthew Stobbs 5fd215d6dd nav bar!
Added a navbar that doesn't do anything to the homepage
2024-03-15 16:48:11 -06:00

10 lines
123 B
Go

package components
import (
"fmt"
)
func NoWrapSize(size string) string {
return fmt.Sprintf("%s:flex-nowrap", size)
}