11 lines
179 B
Go
11 lines
179 B
Go
package premailer
|
|
|
|
import (
|
|
"github.com/vanng822/css"
|
|
)
|
|
|
|
type styleRule struct {
|
|
specificity *specificity
|
|
selector string
|
|
styles map[string]*css.CSSStyleDeclaration
|
|
}
|