Skip to content

Commit

Permalink
💄 style search engine
Browse files Browse the repository at this point in the history
  • Loading branch information
EuCarlos committed Nov 15, 2022
1 parent baf4386 commit 43c3d48
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import axios from 'axios'
import { useEffect, useState } from 'react'

import { Report } from './components/Report'
import { UID } from './utils/uid'

import './styles/globals.sass'
import { useEffect, useState } from 'react'
import axios from 'axios'
import './styles/search_reports.sass'

function App() {

Expand Down
24 changes: 24 additions & 0 deletions src/styles/search_reports.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.forms
margin-top: 2rem

input[type='url']
border-radius: 25px 0 0 25px
border: solid 2px #293241
outline: none

padding: 1rem
width: 25rem
color: #293241

button
color: #fff
background: #293241
border: solid 2px #293241
border-radius: 0 25px 25px 0

padding: 1rem
cursor: pointer
transition: background .7s

&:hover
background: #212835

0 comments on commit 43c3d48

Please sign in to comment.