Skip to content

Commit

Permalink
Spiking The App Design & Vue Component: Nav
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHelalAhmed committed Jan 7, 2022
1 parent a0f7941 commit 4630764
Show file tree
Hide file tree
Showing 5 changed files with 518 additions and 79 deletions.
138 changes: 118 additions & 20 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -380,10 +380,8 @@ Ensure the default browser behavior of the `hidden` attribute.
display: none;
}
*, ::before, ::after {
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-border-opacity: 1;
border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.container {
width: 100%;
Expand Down Expand Up @@ -418,44 +416,144 @@ Ensure the default browser behavior of the `hidden` attribute.
max-width: 1536px;
}
}
.absolute {
position: absolute;
}
.relative {
position: relative;
}
.m-0 {
margin: 0px;
}
.mb-0 {
margin-bottom: 0px;
.ml-2 {
margin-left: 0.5rem;
}
.mr-auto {
margin-right: auto;
.mt-2 {
margin-top: 0.5rem;
}
.ml-auto {
margin-left: auto;
.mb-0 {
margin-bottom: 0px;
}
.block {
display: block;
}
.flex {
display: flex;
}
.hidden {
display: none;
}
.bg-gray-500 {
--tw-bg-opacity: 1;
background-color: rgb(107 114 128 / var(--tw-bg-opacity));
.h-screen {
height: 100vh;
}
.h-12 {
height: 3rem;
}
.h-8 {
height: 2rem;
}
.h-5 {
height: 1.25rem;
}
.h-full {
height: 100%;
}
.w-1\/3 {
width: 33.333333%;
}
.w-8 {
width: 2rem;
}
.w-5 {
width: 1.25rem;
}
.w-56 {
width: 14rem;
}
.flex-1 {
flex: 1 1 0%;
}
.flex-col {
flex-direction: column;
}
.items-center {
align-items: center;
}
.justify-end {
justify-content: flex-end;
}
.justify-center {
justify-content: center;
}
.overflow-y-hidden {
overflow-y: hidden;
}
.rounded-full {
border-radius: 9999px;
}
.border-b-2 {
border-bottom-width: 2px;
}
.border-blue-500 {
--tw-border-opacity: 1;
border-color: rgb(59 130 246 / var(--tw-border-opacity));
}
.border-white {
--tw-border-opacity: 1;
border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.bg-white {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-gray-200 {
--tw-bg-opacity: 1;
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.fill-current {
fill: currentColor;
}
.object-cover {
-o-object-fit: cover;
object-fit: cover;
}
.p-0 {
padding: 0px;
}
.py-4 {
padding-top: 1rem;
padding-bottom: 1rem;
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.px-6 {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.pl-8 {
padding-left: 2rem;
}
.align-baseline {
vertical-align: baseline;
}
.shadow-sm {
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
.font-sans {
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
.text-gray-700 {
--tw-text-opacity: 1;
color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-800 {
--tw-text-opacity: 1;
color: rgb(31 41 55 / var(--tw-text-opacity));
}
.antialiased {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.focus\:outline-none:focus {
outline: 2px solid transparent;
outline-offset: 2px;
}
Loading

0 comments on commit 4630764

Please sign in to comment.