Hunter Lovell

Results 2 issues of Hunter Lovell

It would be nice to have "less than" functionality with the media api. ```js ${media.lessThan.md``} // @media (max-width: 768px) ${media.md``} // @media (min-width: 768px) ```

Currently, i'm using this configuration ```js dynamo.define('model', { hashKey: 'primary', rangeKey: 'range', schema: { primary: dynamo.types.uuid(), event: Joi.string().default(() => 'someDefaultRangeKey') } }) ``` This works well when i'm creating items,...