Matthew Stobbs
9c35be1fcf
- made multiple components for reuse in templ - going to start on actual data displaying templates
9 lines
119 B
Go
9 lines
119 B
Go
package components
|
|
|
|
import "fmt"
|
|
|
|
func NoWrapSize(size string) string {
|
|
return fmt.Sprintf("%s:flex-nowrap", size)
|
|
}
|
|
|