clustvirt/view/components/util.go

9 lines
119 B
Go
Raw Normal View History

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