File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 22 <div class =" h-full" >
33 <main class =" container h-full mx-auto mt-24" >
44 <div class =" flex gap-4 mt-5" >
5- <div class =" flex-1 max-h-full p-4 border-2 rounded-sm" >
5+ <div
6+ class =" flex-1 p-4 overflow-y-auto border-2 rounded-sm max-h-screen--nav"
7+ >
68 <p v-for =" (lineDiff, index) in lhsDiff" :key =" index" >
79 <span v-html =" lineDiff" ></span >
810 </p >
911 </div >
10- <div class =" flex-1 max-h-full p-4 border-2 rounded-sm" >
12+ <div
13+ class =" flex-1 p-4 overflow-y-auto border-2 rounded-sm max-h-screen--nav"
14+ >
1115 <p v-for =" (lineDiff, index) in rhsDiff" :key =" index" >
1216 <span v-html =" lineDiff" ></span >
1317 </p >
Original file line number Diff line number Diff line change 55 <div class =" flex flex-wrap w-full h-full gap-4" >
66 <textarea
77 id =" lhs"
8- class =" flex-1 h-full rounded-md resize-none form-textarea"
8+ class =" flex-1 h-full max-h-full rounded-md resize-none form-textarea"
99 ></textarea >
1010 <textarea
1111 id =" rhs"
12- class =" flex-1 h-full rounded-md resize-none form-textarea"
12+ class =" flex-1 h-full max-h-full rounded-md resize-none form-textarea"
1313 ></textarea >
1414 <div class =" self-end w-full text-center" >
1515 <button
Original file line number Diff line number Diff line change 11module . exports = {
22 mode : 'jit' ,
3+ theme : {
4+ maxHeight : {
5+ 'screen--nav' : 'calc(100vh - 7rem)' ,
6+ }
7+ } ,
38 plugins : [
49 require ( '@tailwindcss/forms' ) ,
510 ]
You can’t perform that action at this time.
0 commit comments