mirror of
https://github.com/crazy-max/diun.git
synced 2024-12-23 03:48:00 +00:00
12 lines
170 B
Go
12 lines
170 B
Go
package premailer
|
|
|
|
import (
|
|
"github.com/vanng822/css"
|
|
)
|
|
|
|
type styleRule struct {
|
|
specificity *specificity
|
|
selector string
|
|
styles []*css.CSSStyleDeclaration
|
|
}
|