/**
 * @mergeTarget
 * @module Src/Components/CustomImage
 */

import { LisioCSSRules } from "@lisio/lisio-engine";

/**
 * Custom image CSS
 * @source
 */
const customImageStyles: LisioCSSRules = {
  "img.lisio-custom-image": {
    width: "95%",
  },
  "img.img-ishihara": {
    "width": "330px",
  },
  "header img.custom-logo": {
    "aspect-ratio": "auto",
    height: "34px",
    "margin-left": "15%",
  },
  "@media screen and (max-width : 399px)": {
    "img.img-ishihara": {
        "width": "95%",
    },
    
  },
};

export { customImageStyles };
