Skip to content

Commit

Permalink
Finalize Sidebar component
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHelalAhmed committed Jan 8, 2022
1 parent 65da95a commit 5310b86
Show file tree
Hide file tree
Showing 5 changed files with 369 additions and 191 deletions.
93 changes: 36 additions & 57 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -382,67 +382,29 @@ Ensure the default browser behavior of the `hidden` attribute.
*, ::before, ::after {
--tw-border-opacity: 1;
border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.container {
width: 100%;
}
@media (min-width: 640px) {

.container {
max-width: 640px;
}
}
@media (min-width: 768px) {

.container {
max-width: 768px;
}
}
@media (min-width: 1024px) {

.container {
max-width: 1024px;
}
}
@media (min-width: 1280px) {

.container {
max-width: 1280px;
}
}
@media (min-width: 1536px) {

.container {
max-width: 1536px;
}
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
}
.absolute {
position: absolute;
}
.relative {
position: relative;
}
.m-0 {
margin: 0px;
}
.ml-2 {
margin-left: 0.5rem;
}
.mt-2 {
margin-top: 0.5rem;
}
.mb-0 {
margin-bottom: 0px;
}
.block {
display: block;
}
.flex {
display: flex;
}
.hidden {
display: none;
}
.h-screen {
height: 100vh;
}
Expand All @@ -458,6 +420,9 @@ Ensure the default browser behavior of the `hidden` attribute.
.h-full {
height: 100%;
}
.w-2\/3 {
width: 66.666667%;
}
.w-1\/3 {
width: 33.333333%;
}
Expand Down Expand Up @@ -485,15 +450,28 @@ Ensure the default browser behavior of the `hidden` attribute.
.justify-center {
justify-content: center;
}
.overflow-x-hidden {
overflow-x: hidden;
}
.overflow-y-hidden {
overflow-y: hidden;
}
.rounded-full {
border-radius: 9999px;
}
.border-b {
border-bottom-width: 1px;
}
.border-b-2 {
border-bottom-width: 2px;
}
.border-r {
border-right-width: 1px;
}
.border-gray-400 {
--tw-border-opacity: 1;
border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-blue-500 {
--tw-border-opacity: 1;
border-color: rgb(59 130 246 / var(--tw-border-opacity));
Expand All @@ -517,8 +495,8 @@ Ensure the default browser behavior of the `hidden` attribute.
-o-object-fit: cover;
object-fit: cover;
}
.p-0 {
padding: 0px;
.p-4 {
padding: 1rem;
}
.px-4 {
padding-left: 1rem;
Expand All @@ -531,27 +509,28 @@ Ensure the default browser behavior of the `hidden` attribute.
.pl-8 {
padding-left: 2rem;
}
.align-baseline {
vertical-align: baseline;
}
.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-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.font-bold {
font-weight: 700;
}
.tracking-tight {
letter-spacing: -0.025em;
}
.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;
.shadow {
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:outline-none:focus {
outline: 2px solid transparent;
Expand Down
Loading

0 comments on commit 5310b86

Please sign in to comment.