diff --git a/src/web/components/form/__tests__/__snapshots__/button.jsx.snap b/src/web/components/form/__tests__/__snapshots__/button.jsx.snap deleted file mode 100644 index d242844dc2..0000000000 --- a/src/web/components/form/__tests__/__snapshots__/button.jsx.snap +++ /dev/null @@ -1,77 +0,0 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Button tests > should render button 1`] = ` -.c0 { - display: inline-block; - padding: 0 15px; - color: #4C4C4C; - text-align: center; - vertical-align: middle; - font-size: 11px; - font-weight: bold; - line-height: 30px; - -webkit-text-decoration: none; - text-decoration: none; - white-space: nowrap; - background-color: #fff; - border-radius: 2px; - border: 1px solid #bfbfbf; - cursor: pointer; - overflow: visible; - z-index: 1; -} - -.c0:focus, -.c0:hover { - border: 1px solid #4C4C4C; -} - -.c0:hover { - -webkit-text-decoration: none; - text-decoration: none; - background: #11ab51; - font-weight: bold; - color: #fff; -} - -.c0[disabled] { - cursor: not-allowed; - opacity: 0.65; - box-shadow: none; -} - -.c0 img { - height: 32px; - width: 32px; - margin-top: 5px 10px 5px -10px; - vertical-align: middle; -} - -.c0:link { - -webkit-text-decoration: none; - text-decoration: none; - color: #4C4C4C; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: center; - -ms-flex-pack: center; - -webkit-justify-content: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -